mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 16:31:33 +00:00
10 lines
243 B
Python
10 lines
243 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class Permission(models.Model):
|
|
class Meta:
|
|
permissions = [
|
|
('view_resourcestatistics', _('Can view resource statistics'))
|
|
]
|