diff --git a/pulseapi/users/models.py b/pulseapi/users/models.py index a1d128c..b0e81c5 100644 --- a/pulseapi/users/models.py +++ b/pulseapi/users/models.py @@ -11,12 +11,6 @@ from pulseapi.profiles.models import UserProfile class EmailUserManager(BaseUserManager): def create_user(self, name, email, password=None): - """ - TEMPORARY MEASURE TO PREVENT SIGNUP SPAM, - SEE https://github.com/mozilla/network-pulse-api/issues/762 - """ - raise ValueError('Not accepting new users at this time.') - if not name: raise ValueError('Users must have a name')