Skip to content
Snippets Groups Projects
Commit d7d1b8a7 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-60: Fixing some problems when registering invite

parent 55c532a7
No related branches found
No related tags found
1 merge request!92GREG-60: Sending data to invite endpoint instead of register
Pipeline #96011 passed
...@@ -6,7 +6,7 @@ from gregui.models import GregUserProfile ...@@ -6,7 +6,7 @@ from gregui.models import GregUserProfile
class IsSponsor(BasePermission): class IsSponsor(BasePermission):
def has_permission(self, request, view): def has_permission(self, request, view):
try: try:
user = GregUserProfile.objects.get(user=request.user) user = GregUserProfile.objects.get(user=request.user.id)
return bool(user.sponsor) return bool(user.sponsor)
except GregUserProfile.DoesNotExist: except GregUserProfile.DoesNotExist:
return False return False
...@@ -67,7 +67,7 @@ class CreateInvitationView(CreateAPIView): ...@@ -67,7 +67,7 @@ class CreateInvitationView(CreateAPIView):
person = serializer.save() person = serializer.save()
invitationlink = InvitationLink.objects.filter( invitationlink = InvitationLink.objects.filter(
invitation__person=person.id, invitation__role__person=person.id,
invitation__role__sponsor_id=sponsor_user.sponsor, invitation__role__sponsor_id=sponsor_user.sponsor,
) )
# TODO: send email to invited guest # TODO: send email to invited guest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment