Increase MAX_USERNAME_LENGTH to 64 chars

This commit is contained in:
PCoder 2020-03-06 15:29:42 +05:30
parent a995f418b2
commit 4890c4956f
1 changed files with 1 additions and 1 deletions

View File

@ -761,7 +761,7 @@ OTP_VERIFY_ENDPOINT = env('OTP_VERIFY_ENDPOINT')
FIRST_VM_ID_AFTER_EU_VAT = int_env('FIRST_VM_ID_AFTER_EU_VAT')
PRE_EU_VAT_RATE = float(env('PRE_EU_VAT_RATE'))
MAX_USERNAME_LENGTH = int_env('MAX_USERNAME_LENGTH', 18)
MAX_USERNAME_LENGTH = int_env('MAX_USERNAME_LENGTH', 64)
if DEBUG:
from .local import * # flake8: noqa