invites: Allow user to be invited as a moderator.

This commit adds both frontend and backend code to invite a user as
moderator. We allow only existing owners and admins to invite a user
as a moderator.
This commit is contained in:
sahil839
2021-04-30 18:49:47 +05:30
committed by Tim Abbott
parent a4c3224328
commit e669818544
7 changed files with 47 additions and 5 deletions

View File

@@ -1713,6 +1713,7 @@ class PreregistrationUser(models.Model):
INVITE_AS = dict(
REALM_OWNER=100,
REALM_ADMIN=200,
MODERATOR=300,
MEMBER=400,
GUEST_USER=600,
)