From 528ac752a8716cbf221f6ce82262d191e5765407 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 24 Apr 2024 13:48:39 -0700 Subject: [PATCH] 15826 update EXEMPT_EXCLUDE_MODELS with new user/group 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 7663f137a..78a64e93b 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -477,8 +477,8 @@ SERIALIZATION_MODULES = { # 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'), + ('users', 'group'), + ('users', 'user'), ('extras', 'configrevision'), ('users', 'objectpermission'), ('users', 'token'),