Skip to content

Commit

Permalink
fix: add tunnistus support
Browse files Browse the repository at this point in the history
Support multiple IDP providers

refs: hp-2481
  • Loading branch information
voneiden committed Jan 28, 2025
1 parent 6a067d5 commit f4331bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions atv/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
ENABLE_SEND_AUDIT_LOG=(bool, False),
CLEAR_AUDIT_LOG_ENTRIES=(bool, False),
USE_X_FORWARDED_FOR=(bool, True),
TOKEN_AUTH_ACCEPTED_AUDIENCE=(str, ""),
TOKEN_AUTH_ACCEPTED_SCOPE_PREFIX=(str, ""),
TOKEN_AUTH_ACCEPTED_AUDIENCE=(list, []),
TOKEN_AUTH_ACCEPTED_SCOPE_PREFIX=(list, []),
TOKEN_AUTH_REQUIRE_SCOPE=(bool, False),
TOKEN_AUTH_AUTHSERVER_URL=(str, ""),
TOKEN_AUTH_AUTHSERVER_URL=(list, []),
CLAMAV_HOST=(str, "atv-clamav"),
)
if os.path.exists(env_file):
Expand Down

0 comments on commit f4331bc

Please sign in to comment.