Skip to content

Commit

Permalink
Fix netbox-community#15826: Added new group and user models
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasge committed Apr 24, 2024
1 parent e05ca71 commit 85667da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netbox/netbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 85667da

Please sign in to comment.