Can i use groups permissions with custom user model?

2016-07-21 Thread Max M
Hello! For example, i extend User: class ExtUserManager(BaseUserManager): def create_user(self, email, password=None): """ Creates and saves a User with the given email, date of birth and password. """ if not email: raise ValueError('Users mu

Can i use group permissions with custom User model?

2016-07-21 Thread Max M
Hello everyone! For example, i have an extended User model: class ExtUserManager(BaseUserManager): def create_user(self, email, password=None): """ Creates and saves a User with the given email, date of birth and password. """ if not email: