Merge branch 'feat-password-history' of https://github.com/appwrite/appwrite into feat-password-history

This commit is contained in:
Damodar Lohani 2022-12-19 08:28:30 +00:00
commit 2019deb454

View file

@ -122,7 +122,7 @@ class Project extends Model
])
->addRule('authPasswordHistory', [
'type' => self::TYPE_INTEGER,
'description' => 'Max password history to save per user. Max passwords limit allowed in history is 20. Use 0 for disabling password history.',
'description' => 'Max allowed passwords in the history list per user. Max passwords limit allowed in history is 20. Use 0 for disabling password history.',
'default' => 0,
'example' => 5,
])