Source code for mailinglists.apps

"""Configuration for the mailinglists package"""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


[docs]class MailinglistsConfig(AppConfig): """Appconfig for mailinglist app.""" name = "mailinglists" verbose_name = _("Mailing lists")
[docs] def ready(self): """Imports the signals when the app is ready""" from . import signals