mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
12 lines
310 B
Python
12 lines
310 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class GroupManagementConfig(AppConfig):
|
|
name = 'allianceauth.groupmanagement'
|
|
label = 'groupmanagement'
|
|
verbose_name = _('Group Management')
|
|
|
|
def ready(self):
|
|
from . import signals # noqa: F401
|