mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 18:36:29 +00:00
9 lines
233 B
Python
9 lines
233 B
Python
from django.core.signals import setting_changed
|
|
from django.dispatch import receiver
|
|
|
|
from cachalot.settings import cachalot_settings
|
|
|
|
|
|
@receiver(setting_changed)
|
|
def reload_settings(sender, **kwargs):
|
|
cachalot_settings.reload()
|