1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #8019: Exclude metrics endpoint when LOGIN_REQUIRED is true

This commit is contained in:
jeremystretch
2021-12-08 15:47:41 -05:00
parent dda11ec69e
commit 45ac1cfd54
2 changed files with 2 additions and 1 deletions

View File

@ -424,7 +424,7 @@ EXEMPT_PATHS = (
f'/{BASE_PATH}graphql/',
f'/{BASE_PATH}login/',
f'/{BASE_PATH}oauth/',
f'/{BASE_PATH}metrics/',
f'/{BASE_PATH}metrics',
)