mirror of
https://github.com/drygdryg/netbox-plugin-device-map.git
synced 2024-11-26 12:10:54 +03:00
8 lines
302 B
Python
8 lines
302 B
Python
from django.conf import settings
|
|
|
|
from . import config
|
|
|
|
# Overlay custom settings over default settings
|
|
plugin_settings = config.default_settings | settings.PLUGINS_CONFIG[config.name]
|
|
plugin_settings['geomap_settings'] = config.default_settings['geomap_settings'] | plugin_settings['geomap_settings']
|