-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow oauth client ID and secret to be set from secret
- Loading branch information
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,17 @@ hotcrp: | |
paperSite: "" | ||
# the email address for the first admin created automatically | ||
adminEmail: [email protected] | ||
|
||
# uncomment to use oauth authentication | ||
#loginType: oauth | ||
|
||
# specifiy oauth client_id and client secret separately or with existing secret | ||
# they can also be set directly in oauthProvider parameter | ||
#oauthClientId: | ||
#oauthClientSecret: | ||
# Provide the existing secret name for oauth client_id and client_secret. The | ||
# existing secret must contain `client_id` and `client_secret` keys | ||
#oauthClientExistingSecret: | ||
#oauthProvider: | | ||
# '{}' | ||
|
||
|