verwaltungstracker/froide_govplan/apps.py
2022-03-11 23:40:37 +01:00

14 lines
420 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class FroideGovPlanConfig(AppConfig):
name = "froide_govplan"
verbose_name = _("GovPlan App")
def ready(self):
from froide.follow.configuration import follow_registry
from .configuration import GovernmentPlanFollowConfiguration
follow_registry.register(GovernmentPlanFollowConfiguration())