Compare commits
No commits in common. "cc0cd791dcdf276fde4e2488b1114ad08fed09aa" and "7c5fa8a5b7ce67e12ca89fe36e3ae1faf6bb8909" have entirely different histories.
cc0cd791dc
...
7c5fa8a5b7
@ -17,7 +17,11 @@ SSO_PRIVATE_KEY = "CHANGE_ME"
|
||||
SSO_PUBLIC_KEY = "CHANGE_ME"
|
||||
|
||||
# OAuth settings
|
||||
OAUTH_CODE_VERIFIER = "CHANGE_ME"
|
||||
OAUTH_CODE_VERIFIER = ''.join(
|
||||
random.choice(
|
||||
string.ascii_uppercase + string.digits
|
||||
) for _ in range(random.randint(43, 128))
|
||||
)
|
||||
|
||||
OAUTH_CLIENT_ID = "CHANGE_ME"
|
||||
OAUTH_CLIENT_SECRET = "CHANGE_ME"
|
Loading…
Reference in New Issue
Block a user