diff --git a/TaskWebApp/Utils/Globals.cs b/TaskWebApp/Utils/Globals.cs index 0a9638f..a353d56 100644 --- a/TaskWebApp/Utils/Globals.cs +++ b/TaskWebApp/Utils/Globals.cs @@ -14,9 +14,9 @@ public static class Globals public static string ServiceUrl = ConfigurationManager.AppSettings["api:TaskServiceUrl"]; // B2C policy identifiers - public static string SignUpSignInPolicyId = ConfigurationManager.AppSettings["ida:SignUpSignInPolicyId"]; - public static string EditProfilePolicyId = ConfigurationManager.AppSettings["ida:EditProfilePolicyId"]; - public static string ResetPasswordPolicyId = ConfigurationManager.AppSettings["ida:ResetPasswordPolicyId"]; + public static string SignUpSignInPolicyId = ConfigurationManager.AppSettings["ida:SignUpSignInPolicyId"].ToLower(); + public static string EditProfilePolicyId = ConfigurationManager.AppSettings["ida:EditProfilePolicyId"].ToLower(); + public static string ResetPasswordPolicyId = ConfigurationManager.AppSettings["ida:ResetPasswordPolicyId"].ToLower(); public static string DefaultPolicy = SignUpSignInPolicyId; diff --git a/TaskWebApp/Web.config b/TaskWebApp/Web.config index cc67a3d..51df34e 100644 --- a/TaskWebApp/Web.config +++ b/TaskWebApp/Web.config @@ -1,199 +1,200 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file