From fc5cd6bdd17e1796cd1319c0349d8a7451391a45 Mon Sep 17 00:00:00 2001 From: Bartlomiej Komendarczuk Date: Fri, 2 Aug 2024 14:26:16 +0200 Subject: [PATCH] Added apostrophe to allowed characters for username. (#16406) --- src/Umbraco.Web.UI/appsettings.template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI/appsettings.template.json b/src/Umbraco.Web.UI/appsettings.template.json index 698eb83955..35a41bcedb 100644 --- a/src/Umbraco.Web.UI/appsettings.template.json +++ b/src/Umbraco.Web.UI/appsettings.template.json @@ -41,7 +41,7 @@ "KeepUserLoggedIn": false, "UsernameIsEmail": true, "HideDisabledUsersInBackoffice": false, - "AllowedUserNameCharacters": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+\\", + "AllowedUserNameCharacters": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-'._@+\\", "UserPassword": { "RequiredLength": 10, "RequireNonLetterOrDigit": false,