Skip to content

Commit

Permalink
remove address filled from signup
Browse files Browse the repository at this point in the history
  • Loading branch information
chibie committed Nov 20, 2018
1 parent 6175c9d commit fef5896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/base/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class User(AbstractBaseUser, PermissionsMixin):
modified = models.DateTimeField(auto_now=True)
date_joined = models.DateTimeField(auto_now_add=True)

REQUIRED_FIELDS = ['first_name', 'last_name', 'address', 'date_joined']
REQUIRED_FIELDS = ['first_name', 'last_name']
USERNAME_FIELD = 'email'

objects = UserManager()
Expand Down

0 comments on commit fef5896

Please sign in to comment.