Skip to content

Commit

Permalink
auth broker anonymous paths and url names
Browse files Browse the repository at this point in the history
  • Loading branch information
oyeniyipa committed Nov 18, 2024
1 parent 667cd5e commit 30795ca
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,16 @@
AUTHBROKER_CLIENT_ID = env("AUTHBROKER_CLIENT_ID")
AUTHBROKER_CLIENT_SECRET = env("AUTHBROKER_CLIENT_SECRET")
AUTHBROKER_STAFF_SSO_SCOPE = env("AUTHBROKER_STAFF_SSO_SCOPE")
AUTHBROKER_ANONYMOUS_PATHS = env("AUTHBROKER_ANONYMOUS_PATHS")
AUTHBROKER_ANONYMOUS_URL_NAMES = env("AUTHBROKER_ANONYMOUS_URL_NAMES")

AUTHBROKER_ANONYMOUS_PATHS = (
"/pingdom/ping.xml",
)
AUTHBROKER_ANONYMOUS_URL_NAMES = (
"person-api-people-list",
"person-api-people-detail",
"team-api-teams-list",
"profile-get-card",
)


# Sentry
Expand Down

0 comments on commit 30795ca

Please sign in to comment.