mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
642 B
25 lines
642 B
# -*- coding: utf-8 -*- |
|
# |
|
from django.utils.translation import ugettext_lazy as _ |
|
|
|
DEFAULT_CITY = _("Unknown") |
|
|
|
MODELS_NEED_RECORD = ( |
|
# users |
|
'User', 'UserGroup', |
|
# acls |
|
'LoginACL', 'LoginAssetACL', 'LoginConfirmSetting', |
|
# assets |
|
'Asset', 'Node', 'AdminUser', 'SystemUser', 'Domain', 'Gateway', 'CommandFilterRule', |
|
'CommandFilter', 'Platform', 'AuthBook', |
|
# applications |
|
'Application', |
|
# orgs |
|
'Organization', |
|
# settings |
|
'Setting', |
|
# perms |
|
'AssetPermission', 'ApplicationPermission', |
|
# xpack |
|
'License', 'Account', 'SyncInstanceTask', 'ChangeAuthPlan', 'GatherUserTask', |
|
)
|
|
|