mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-21 02:08:59 +02:00
9 lines
235 B
Python
9 lines
235 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
name = 'allianceauth.notifications'
|
|
label = 'notifications'
|
|
verbose_name = _('Notifications')
|