From 9be5918c83f778915258d83497755cc814f2e4ec Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 5 Sep 2023 11:16:42 -0400 Subject: [PATCH] Fixes #13684: Enable modying the configuration when maintenance mode is enabled --- netbox/netbox/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 4ad783161..2f00db758 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -496,6 +496,7 @@ AUTH_EXEMPT_PATHS = ( # All URLs starting with a string listed here are exempt from maintenance mode enforcement MAINTENANCE_EXEMPT_PATHS = ( f'/{BASE_PATH}admin/', + f'/{BASE_PATH}extras/config-revisions/', # Allow modifying the configuration ) SERIALIZATION_MODULES = {