mirror of https://github.com/jumpserver/jumpserver
9 lines
148 B
Python
9 lines
148 B
Python
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
from common.db.models import ChoiceSet
|
||
|
|
||
|
|
||
|
ADMIN = 'Admin'
|
||
|
USER = 'User'
|
||
|
AUDITOR = 'Auditor'
|