2020-12-27 10:49:54 +00:00
|
|
|
# Copyright (C) 2020 by Animath
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from django.apps import AppConfig
|
2020-12-28 18:19:01 +00:00
|
|
|
from django.db.models.signals import post_save, pre_save
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ParticipationConfig(AppConfig):
|
|
|
|
"""
|
2021-01-12 14:42:32 +00:00
|
|
|
The participation app contains the data about the teams, solutions, ...
|
2020-12-27 10:49:54 +00:00
|
|
|
"""
|
|
|
|
name = 'participation'
|
|
|
|
|
|
|
|
def ready(self):
|
2020-12-28 17:52:50 +00:00
|
|
|
from participation.signals import create_team_participation, update_mailing_list
|
2020-12-27 10:49:54 +00:00
|
|
|
pre_save.connect(update_mailing_list, "participation.Team")
|
|
|
|
post_save.connect(create_team_participation, "participation.Team")
|