datatracker/ietf/community/apps.py
Jennifer Richards 70ab711216
refactor: separate concerns / rename notify_events (#8328)
* refactor: separate signal receiver from work

* test: split test to match code structure

* test: fix test

* refactor: reorg signals in community app
2024-12-12 16:48:44 -06:00

13 lines
347 B
Python

# Copyright The IETF Trust 2024, All Rights Reserved
from django.apps import AppConfig
class CommunityConfig(AppConfig):
name = "ietf.community"
def ready(self):
"""Initialize the app after the registry is populated"""
# implicitly connects @receiver-decorated signals
from . import signals # pyflakes: ignore