22 lines
531 B
Python
22 lines
531 B
Python
from django.contrib.auth.models import User
|
|
from django.core.validators import MaxLengthValidator
|
|
|
|
#load config from json
|
|
import app.config
|
|
app.config.init()
|
|
|
|
NEW_LENGTH = {
|
|
'username': 255,
|
|
'email': 255,
|
|
'password': 255,
|
|
}
|
|
|
|
def monkey_patch_username():
|
|
for field in NEW_LENGTH:
|
|
f= User._meta.get_field(field)
|
|
f.max_length = NEW_LENGTH[field]
|
|
for v in f.validators:
|
|
if isinstance(v, MaxLengthValidator):
|
|
v.limit_value = NEW_LENGTH[field]
|
|
|
|
monkey_patch_username()
|