Skip to content

Commit

Permalink
Closes #16127: Enable loading local settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed May 14, 2024
1 parent c117218 commit fcc8ecc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions netbox/netbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,3 +801,10 @@ def _setting(name, default=None):
RQ_QUEUES.update({
f"{plugin_name}.{queue}": RQ_PARAMS for queue in plugin_config.queues
})

# UNSUPPORTED FUNCTIONALITY: Import any local overrides.
try:
from .local_settings import *
_UNSUPPORTED_SETTINGS = True
except ImportError:
pass

0 comments on commit fcc8ecc

Please sign in to comment.