Skip to content

Commit

Permalink
add auth
Browse files Browse the repository at this point in the history
  • Loading branch information
lusmoura committed Jul 18, 2024
1 parent 04aa2f4 commit 4fe484b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/config/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
SKIP_AUTH = os.getenv("SKIP_AUTH", None)
# Add Auth strategy classes here to enable them
# Ex: [BasicAuthentication]
ENABLED_AUTH_STRATEGIES = []
ENABLED_AUTH_STRATEGIES = [OpenIDConnect]
if "pytest" in sys.modules or SKIP_AUTH == "true":
ENABLED_AUTH_STRATEGIES = [OpenIDConnect]

Expand Down

0 comments on commit 4fe484b

Please sign in to comment.