mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2024-12-26 07:42:24 +00:00
11 lines
313 B
Python
11 lines
313 B
Python
from django.apps import AppConfig
|
|
from django.db.models.signals import post_save
|
|
|
|
|
|
class ParticipationConfig(AppConfig):
|
|
name = 'participation'
|
|
|
|
def ready(self):
|
|
from participation.signals import create_team_participation
|
|
post_save.connect(create_team_participation, "participation.Team")
|