Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes to support custom user #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions invitation/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import hashlib

from django.conf import settings
from django.contrib.auth.models import User, Group
from django.contrib.auth.models import Group
from django.contrib.sites.models import Site
from django.core.mail import send_mail
from django.db import models
Expand Down Expand Up @@ -58,8 +58,8 @@ class Invitation(models.Model):
date_invited = models.DateTimeField(_('date invited'))
expiration_date = models.DateTimeField()
used = models.BooleanField(default=False)
from_user = models.ForeignKey(User, related_name='invitations_sent')
to_user = models.ForeignKey(User, null=True, blank=True, related_name='invitation_received')
from_user = models.ForeignKey(settings.AUTH_USER_MODEL, related_name='invitations_sent')
to_user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name='invitation_received')
email = models.EmailField(unique=True)

objects = InvitationManager()
Expand Down