From 85667dae2606b1e6a12578aaa66754833433e7ef Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Wed, 24 Apr 2024 07:27:57 +0200 Subject: [PATCH] Fix #15826: Added new group and user models --- netbox/netbox/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 7663f137a16..d5cded72866 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -477,11 +477,11 @@ def _setting(name, default=None): # Exclude potentially sensitive models from wildcard view exemption. These may still be exempted # by specifying the model individually in the EXEMPT_VIEW_PERMISSIONS configuration parameter. EXEMPT_EXCLUDE_MODELS = ( - ('auth', 'group'), - ('auth', 'user'), ('extras', 'configrevision'), + ('users', 'group'), ('users', 'objectpermission'), ('users', 'token'), + ('users', 'user'), ) # All URLs starting with a string listed here are exempt from login enforcement