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.
19 lines
582 B
19 lines
582 B
import uuid
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
from django.db import models
|
|
|
|
|
|
class MenuPermission(models.Model):
|
|
""" 附加权限位类,用来定义无资源类的权限,不做实体资源 """
|
|
id = models.UUIDField(default=uuid.uuid4, primary_key=True)
|
|
|
|
class Meta:
|
|
default_permissions = []
|
|
verbose_name = _('Menu permission')
|
|
permissions = [
|
|
('view_adminview', _('view console view')),
|
|
('view_auditview', _('view audit view')),
|
|
('view_userview', _('view workspace view')),
|
|
]
|