2016-08-08 16:43:11 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.apps import AppConfig
|
2023-07-24 03:52:25 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2016-08-08 16:43:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PermsConfig(AppConfig):
|
|
|
|
name = 'perms'
|
2022-03-02 12:48:43 +00:00
|
|
|
verbose_name = _('App permissions')
|
2020-05-19 03:47:49 +00:00
|
|
|
|
|
|
|
def ready(self):
|
2023-07-24 06:09:22 +00:00
|
|
|
from . import signal_handlers # noqa
|
|
|
|
from . import tasks # noqa
|
|
|
|
from . import notifications # noqa
|
2020-05-19 03:47:49 +00:00
|
|
|
super().ready()
|