mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-11 04:19:25 +00:00
core: add test for Markdown syntax
Signed-off-by: Skia <skia@libskia.so>
This commit is contained in:
@ -22,6 +22,8 @@
|
||||
#
|
||||
#
|
||||
|
||||
import sys
|
||||
|
||||
from django.apps import AppConfig
|
||||
from django.core.signals import request_started
|
||||
|
||||
@ -44,7 +46,7 @@ class SithConfig(AppConfig):
|
||||
Club._memberships = {}
|
||||
Forum._club_memberships = {}
|
||||
|
||||
print("Connecting signals!")
|
||||
print("Connecting signals!", file=sys.stderr)
|
||||
request_started.connect(clear_cached_groups, weak=False, dispatch_uid="clear_cached_groups")
|
||||
request_started.connect(clear_cached_memberships, weak=False, dispatch_uid="clear_cached_memberships")
|
||||
# TODO: there may be a need to add more cache clearing
|
||||
|
Reference in New Issue
Block a user