diff --git a/Model/Changes_2022_03_18_Wohnheim.txt b/Model/Changes_2022_03_18_Wohnheim.txt index bdc3835c6..71333a881 100644 --- a/Model/Changes_2022_03_18_Wohnheim.txt +++ b/Model/Changes_2022_03_18_Wohnheim.txt @@ -1,5 +1,5 @@ ALTER TABLE `wohnheim` ADD COLUMN `PflichtbesetzungStart` VARCHAR(45) NULL DEFAULT NULL AFTER `Bemerkung`, -ADD COLUMN `PflichtbesetzungEnde` VARCHAR(45) NULL DEFAULT NULL AFTER `PflichtbesetzungStart`; +ADD COLUMN `PflichtbesetzungEnde` VARCHAR(45) NULL DEFAULT NULL AFTER `PflichtbesetzungStart`, ADD COLUMN `PflichtbesetzungEinblenden` INT NULL DEFAULT NULL AFTER `PflichtbesetzungEnde`, ADD COLUMN `StandardZeilenanzahl` INT NULL DEFAULT NULL AFTER `PflichtbesetzungEinblenden`; diff --git a/NHibernateDLLCopier.bat b/NHibernateDLLCopier.bat index 6fc0e467d..be76ad45e 100644 --- a/NHibernateDLLCopier.bat +++ b/NHibernateDLLCopier.bat @@ -9,4 +9,5 @@ copy Lib\NHibernate.ByteCode.Castle.dll BeWoPlanerMobil\bin\ copy Lib\NHibernate.dll BeWoPlanerMobil\bin\ copy Lib\Castle.Core.dll BeWoPlanerMobil\bin\ copy Lib\Castle.DynamicProxy.dll BeWoPlanerMobil\bin\ -copy Lib\Castle.DynamicProxy2.dll BeWoPlanerMobil\bin\ \ No newline at end of file +copy Lib\Castle.DynamicProxy2.dll BeWoPlanerMobil\bin\ +pause \ No newline at end of file diff --git a/Service/Security/SecurityContextInitializer.cs b/Service/Security/SecurityContextInitializer.cs index 3d6182154..361362b8d 100644 --- a/Service/Security/SecurityContextInitializer.cs +++ b/Service/Security/SecurityContextInitializer.cs @@ -37,7 +37,7 @@ namespace BeWo.Service.Security string lServiceInterface = lTemp[lTemp.Count - 2]; // TODO Hier kann man jetzt etwas bauen wer sich für welchen service autorisieren muss... - var skip = new string[] { "Download", "Download2", "DownloadInfo", "GetUpdatePlan", "GetUpdateFile" }; + var skip = new string[] { "Download", "Download2", "DownloadInfo", "GetUpdatePlan", "GetUpdateFile", "ResetAllTenants" }; if (lMethodName == "IsUserValid" || lMethodName == "IsUserValidTwoFactor" || lMethodName == "ResetTenant" || lMethodName == "ResetAllTenant" || lMethodName == "GetEmailForUserName") { return null;