Private
Public Access
1
0

tested upgrade stuff, improved new user emails

This commit is contained in:
Sander Roosendaal
2019-05-16 10:53:26 +02:00
parent 8bd6373212
commit af0b03970a
6 changed files with 58 additions and 6 deletions

View File

@@ -597,7 +597,7 @@ def process_request_code(manager,code):
if rekwest.team.manager != manager:
return (0,'You are not the manager of this team')
result = add_member(t.id,r)
result,comment = add_member(t.id,r)
if not result:
return (result,"The member couldn't be added")
@@ -622,7 +622,7 @@ def process_invite_code(user,code):
return (0,'The invitation has expired')
t = invitation.team
result = add_member(t.id,r)
result, comment = add_member(t.id,r)
if not result:
return (result,"The member couldn't be added")