mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-14 04:37:35 +00:00
feat: password age policy (#8132)
# Which Problems Are Solved Some organizations / customers have the requirement, that there users regularly need to change their password. ZITADEL already had the possibility to manage a `password age policy` ( thought the API) with the maximum amount of days a password should be valid, resp. days after with the user should be warned of the upcoming expiration. The policy could not be managed though the Console UI and was not checked in the Login UI. # How the Problems Are Solved - The policy can be managed in the Console UI's settings sections on an instance and organization level. - During an authentication in the Login UI, if a policy is set with an expiry (>0) and the user's last password change exceeds the amount of days set, the user will be prompted to change their password. - The prompt message of the Login UI can be customized in the Custom Login Texts though the Console and API on the instance and each organization. - The information when the user last changed their password is returned in the Auth, Management and User V2 API. - The policy can be retrieved in the settings service as `password expiry settings`. # Additional Changes None. # Additional Context - closes #8081 --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
This commit is contained in:
@@ -1373,6 +1373,7 @@
|
||||
"LANGUAGES": "Языки",
|
||||
"LOGIN": "Действия при входе и безопасность",
|
||||
"LOCKOUT": "Блокировка",
|
||||
"AGE": "Срок действия пароля",
|
||||
"COMPLEXITY": "Сложность пароля",
|
||||
"NOTIFICATIONS": "Настройки уведомлений",
|
||||
"NOTIFICATIONS_DESC": "Настройки SMTP и SMS",
|
||||
@@ -1596,7 +1597,7 @@
|
||||
},
|
||||
"PWD_AGE": {
|
||||
"TITLE": "Срок действия пароля",
|
||||
"DESCRIPTION": "Вы можете установить политику срока действия паролей. Данная политика предупреждает об истечении определённого времени срока действия."
|
||||
"DESCRIPTION": "Вы можете установить политику истечения срока действия паролей. Эта политика вынудит пользователя изменить пароль при следующем входе в систему после истечения срока его действия. Нет никаких автоматических предупреждений и уведомлений."
|
||||
},
|
||||
"PWD_LOCKOUT": {
|
||||
"TITLE": "Политика блокировки",
|
||||
@@ -1767,8 +1768,8 @@
|
||||
"SHOWLOCKOUTFAILURES": "Показать ошибки блокировки",
|
||||
"MAXPASSWORDATTEMPTS": "Максимальное количество попыток пароля",
|
||||
"MAXOTPATTEMPTS": "Максимальное количество попыток OTP",
|
||||
"EXPIREWARNDAYS": "Предупреждение об истечении срока действия после дня",
|
||||
"MAXAGEDAYS": "Максимальный возраст в днях",
|
||||
"EXPIREWARNDAYS": "Предупреждение об истечении срока действия через несколько дней",
|
||||
"MAXAGEDAYS": "Максимальная продолжительность действия (дни)",
|
||||
"USERLOGINMUSTBEDOMAIN": "Добавить домен организации в качестве суффикса к именам логина",
|
||||
"USERLOGINMUSTBEDOMAIN_DESCRIPTION": "Если вы включите данный параметр, все имена входа будут иметь суффикс домена организации. Если данный параметр отключен, вы должны убедиться, что имена пользователей уникальны для всех организаций.",
|
||||
"VALIDATEORGDOMAINS": "Проверка доменов организации",
|
||||
|
Reference in New Issue
Block a user