Source code for registrations.apps

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


[docs]class RegistrationsConfig(AppConfig): """AppConfig for the registrations package""" name = "registrations" verbose_name = _("Registrations")
[docs] def ready(self): """Imports the signals when the app is ready""" from . import signals