Related to https://github.com/grafana/oncall/issues/96 --------- Co-authored-by: Ravishankar <ravishankar.gnanaprakasam@gmail.com>
8 lines
183 B
Python
8 lines
183 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MattermostConfig(AppConfig):
|
|
name = "apps.mattermost"
|
|
|
|
def ready(self) -> None:
|
|
import apps.mattermost.signals # noqa: F401
|