mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
11 lines
294 B
Python
11 lines
294 B
Python
from django.apps import AppConfig
|
|
from django.conf import settings
|
|
|
|
class GestioninscriptionsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'Subscriptions'
|
|
|
|
def ready(self):
|
|
from Subscriptions.signals import clear_cache
|
|
clear_cache()
|