2023-04-06 11:08:42 +00:00
|
|
|
# -*- coding:utf-8 -*-
|
2017-05-31 19:47:13 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
|
|
|
# All contributors are listed in the CONTRIBUTORS file.
|
2017-05-31 19:47:13 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-05-31 19:47:13 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# You can find the whole source code at https://github.com/ae-utbm/sith3
|
2017-05-31 19:47:13 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-05-31 19:47:13 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# PREVIOUSLY LICENSED UNDER THE MIT LICENSE,
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE.old"
|
2017-05-31 19:47:13 +00:00
|
|
|
#
|
|
|
|
|
2017-08-24 14:29:40 +00:00
|
|
|
import sys
|
|
|
|
|
2017-05-31 19:47:13 +00:00
|
|
|
from django.apps import AppConfig
|
2023-05-02 10:36:59 +00:00
|
|
|
from django.core.cache import cache
|
2017-06-07 20:51:17 +00:00
|
|
|
from django.core.signals import request_started
|
2017-05-31 19:47:13 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2017-05-31 19:47:13 +00:00
|
|
|
class SithConfig(AppConfig):
|
2018-10-04 19:29:19 +00:00
|
|
|
name = "core"
|
2017-05-31 19:47:13 +00:00
|
|
|
verbose_name = "Core app of the Sith"
|
|
|
|
|
|
|
|
def ready(self):
|
2024-06-24 11:07:36 +00:00
|
|
|
import core.signals # noqa F401
|
2017-05-31 19:47:13 +00:00
|
|
|
from forum.models import Forum
|
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
cache.clear()
|
2017-05-31 19:47:13 +00:00
|
|
|
|
2017-06-07 20:51:17 +00:00
|
|
|
def clear_cached_memberships(**kwargs):
|
2017-05-31 19:47:13 +00:00
|
|
|
Forum._club_memberships = {}
|
|
|
|
|
2017-08-24 14:29:40 +00:00
|
|
|
print("Connecting signals!", file=sys.stderr)
|
2018-10-04 19:29:19 +00:00
|
|
|
request_started.connect(
|
|
|
|
clear_cached_memberships,
|
|
|
|
weak=False,
|
|
|
|
dispatch_uid="clear_cached_memberships",
|
|
|
|
)
|