We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1925a00 commit e53b467Copy full SHA for e53b467
geonode_mapstore_client/apps.py
@@ -305,9 +305,11 @@ def run_setup_hooks(*args, **kwargs):
305
306
setattr(settings, "MAPSTORE_DASHBOARD_CATALOGUE_SELECTED_SERVICE", MAPSTORE_DASHBOARD_CATALOGUE_SELECTED_SERVICE)
307
setattr(settings, "MAPSTORE_DASHBOARD_CATALOGUE_SERVICES", MAPSTORE_DASHBOARD_CATALOGUE_SERVICES)
308
- setattr(settings, "REQUEST_CONFIGURATION_RULES_HANDLERS", [
+ handlers = getattr(settings, "REQUEST_CONFIGURATION_RULES_HANDLERS", [])
309
+ handlers.extend([
310
"geonode_mapstore_client.handlers.BaseConfigurationRuleHandler",
311
])
312
+ setattr(settings, "REQUEST_CONFIGURATION_RULES_HANDLERS", handlers)
313
314
315
def connect_geoserver_style_visual_mode_signal():
0 commit comments