Issue #6 Se crea un social_networks al crear un usuario

This commit is contained in:
Daniel Cortes
2020-06-27 14:58:55 -04:00
parent ee72e39ae1
commit 7e566ebeea
2 changed files with 11 additions and 0 deletions

View File

@@ -59,6 +59,11 @@ class User(AbstractBaseUser):
REQUIRED_FIELDS = ['email']
def save(self, *args, **kwargs):
super().save(*args, **kwargs)
social_networks = SocialNetworks(user=self)
social_networks.save()
@staticmethod
def has_perm(*args, **kwargs):
"""Los usuarios siempre tienen permiso"""