diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2020-08-19 15:51:19 -0400 |
---|---|---|
committer | Sean Smith <ssmith@iol.unh.edu> | 2020-08-28 13:36:51 -0400 |
commit | 8eafbb5c2d8c346b9f7a2e81d8f27ba8486d2d75 (patch) | |
tree | 162988015bb0949c19d70eacfbab3ce208c34779 /src | |
parent | 90a55772df44dfaeadced5fb3dc4dab0c9c49c6f (diff) |
Fixed one issue account creation
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Change-Id: I7582c8aa8b58f6adf487329fd4936a58f4bb4727
Diffstat (limited to 'src')
-rw-r--r-- | src/account/models.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/account/models.py b/src/account/models.py index 2c133bb..2d0293f 100644 --- a/src/account/models.py +++ b/src/account/models.py @@ -11,8 +11,6 @@ from django.contrib.auth.models import User from django.db import models from django.apps import apps -from django.core.exceptions import ValidationError -import re import json import random @@ -59,20 +57,6 @@ class UserProfile(models.Model): class Meta: db_table = 'user_profile' - def clean(self, *args, **kwargs): - company = self.company - regex = r'[a-z\_\-\.\$]*' - pattern = re.compile(regex) - - if not pattern.fullmatch(company): - raise ValidationError('Company may only include lowercase letters, _, -, . and $') - - super().clean(*args, **kwargs) - - def save(self, *args, **kwargs): - self.full_clean() - super().save(*args, **kwargs) - def __str__(self): return self.user.username |