fix(orgs): 创建组织用户不必填 (#4515)

* fix(role): 更改role的顺序

* fix(tickets): 修复工单邮件跳转地址

* fix(tickets): 修复工单复制链接地址不对

* fix(orgs): 创建组织用户不必填

Co-authored-by: xinwen <coderWen@126.com>
This commit is contained in:
fit2bot
2020-08-19 21:44:20 +08:00
committed by GitHub
parent 0fd2f18240
commit 9cb5985947
8 changed files with 47 additions and 11 deletions

View File

@@ -155,8 +155,8 @@ class AuthMixin:
class RoleMixin:
class ROLE(ChoiceSet):
ADMIN = choices.ADMIN, _('System administrator')
USER = choices.USER, _('User')
AUDITOR = choices.AUDITOR, _('System auditor')
USER = choices.USER, _('User')
APP = 'App', _('Application')
role = ROLE.USER