Skip to content

Commit

Permalink
Merge pull request #156 from dimagi/ce/repeater-fixes
Browse files Browse the repository at this point in the history
expiry is number
  • Loading branch information
calellowitz authored Oct 6, 2023
2 parents 1273cec + 9bc0e88 commit 1ebb940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
CONNECTID_CLIENT_SECRET = env("cid_client_secret", default="")

OAUTH2_PROVIDER = {
"ACCESS_TOKEN_EXPIRE_SECONDS": "1209600", # seconds in two weeks
"ACCESS_TOKEN_EXPIRE_SECONDS": 1209600, # seconds in two weeks
"RESOURCE_SERVER_INTROSPECTION_URL": f"{CONNECTID_URL}/o/introspect/",
"RESOURCE_SERVER_INTROSPECTION_CREDENTIALS": (
CONNECTID_CLIENT_ID,
Expand Down

0 comments on commit 1ebb940

Please sign in to comment.