-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Closed
Closed
Copy link
Description
Which Umbraco version are you using?
17.1
Bug summary
According this docs there is should be "UserPassword" section in "Umbraco:CMS:Security" section. But during configuring such setting there is no suggestion for it:
I have checked generated "appsettings-schema.Umbraco.Cms.json" and there is no "UserPassword" in it.
Specifics
Here is my appsettings.json file:
{
"$schema": "appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
},
"Umbraco": {
"CMS": {
"Global": {
"InstallMissingDatabase": true,
"Id": "09bf5b06-1ec4-42c9-b8e0-e974327c0118",
"UseHttps": true,
"SanitizeTinyMce": true
},
"Content": {
"AllowEditInvariantFromNonDefault": true,
"ContentVersionCleanupPolicy": {
"EnableCleanup": true
}
},
"Unattended": {
"InstallUnattended": true,
"UnattendedUserName": "sysadmin@umbraco.web",
"UnattendedUserEmail": "sysadmin@umbraco.web",
"UnattendedUserPassword": "1"
},
"Runtime": {
"Mode": "Production"
},
"ModelsBuilder": {
"ModelsMode": "Nothing"
},
"Security": {
"AllowConcurrentLogins": false
}
}
}
}Steps to reproduce
- Create umbraco project from umbraco template
- Open it in Visual Studio 2022
- Rebuild the project
- Make sure ./appsettings-schema.Umbraco.Cms.json has been created
- Try to add "Umbraco:CMS:Security:UserPassword" section
Expected result / actual result
Actual: There is no suggestion for "Umbraco:CMS:Security:UserPassword"
Expected: There is suggestion for "Umbraco:CMS:Security:UserPassword"
This item has been added to our backlog AB#64687
Reactions are currently unavailable