Skip to content

Commit

Permalink
fix #514 minimum password length
Browse files Browse the repository at this point in the history
  • Loading branch information
stitch committed May 24, 2024
1 parent a8e9616 commit 857484f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dashboard/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
# fix 514
"OPTIONS": {
"min_length": 16,
},
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
Expand Down

0 comments on commit 857484f

Please sign in to comment.