mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-27 11:12:54 +00:00
12 lines
263 B
Python
12 lines
263 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class RBACConfig(AppConfig):
|
|
name = 'rbac'
|
|
verbose_name = _('App RBAC')
|
|
|
|
def ready(self):
|
|
from . import signal_handlers # noqa
|
|
super().ready()
|