Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNthulane Makgato
Courses Plus Student 19,602 PointsAccepted TOS is tripping me up
Struggling to pass this code challenge and I think the problem is with the accepted TOS. Anyone please assist.
from django.contrib.auth.models import (
AbstractBaseUser,
BaseUserManager,
PermissionsMixin
)
from django.db import models
class UserManager(BaseUserManager):
def create_user(self, email, dob, accepted_tos=False, password=None):
if accepted_tos != True:
raise ValueError("Users must first accept the terms of service")
user = self.model(email=email, dob=dob, accepted_tos=True) #password=password)
user.set_password(password)
user.save()
return user
def create_superuser(self, email, dob, password):
accepted_tos = True
user = self.create_user(
email,
dob,
password
)
user.is_staff = True
user.is_superuser = True
user.save()
return user
3 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsMove the accepted_tos=True
Into the arguments list for self.create_user()
. Change the other parameters from positional to keyword parameters.
Kenneth Love
Treehouse Guest Teacherdef create_superuser(self, email, dob, password):
accepted_tos = True
user = self.create_user(
email,
dob,
password
)
You didn't make superusers accept the TOS. Since you didn't pass it in, it gets the default of False
.
Nthulane Makgato
Courses Plus Student 19,602 PointsThanks for both of your contributions!!