Skip to content

Commit

Permalink
auth rework: favor base class config
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Dec 19, 2020
1 parent 15df9cf commit b1a954a
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions jupyterhub/templates/_helpers-auth-rework.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -44,39 +44,39 @@ admin.access: JupyterHub.admin_access
admin.users: Authenticator.admin_users
whitelist.users: Authenticator.allowed_users
allowedUsers: Authenticator.allowed_users
google.clientId: GoogleOAuthenticator.client_id
google.clientSecret: GoogleOAuthenticator.client_secret
google.callbackUrl: GoogleOAuthenticator.oauth_callback_url
google.clientId: OAuthenticator.client_id
google.clientSecret: OAuthenticator.client_secret
google.callbackUrl: OAuthenticator.oauth_callback_url
google.hostedDomain: GoogleOAuthenticator.hosted_domain
google.loginService: GoogleOAuthenticator.login_service
github.clientId: GitHubOAuthenticator.client_id
github.clientSecret: GitHubOAuthenticator.client_secret
github.callbackUrl: GitHubOAuthenticator.oauth_callback_url
github.clientId: OAuthenticator.client_id
github.clientSecret: OAuthenticator.client_secret
github.callbackUrl: OAuthenticator.oauth_callback_url
github.orgWhitelist: GitHubOAuthenticator.allowed_organizations
github.allowedOrganizations: GitHubOAuthenticator.allowed_organizations
cilogon.clientId: CILogonOAuthenticator.client_id
cilogon.clientSecret: CILogonOAuthenticator.client_secret
cilogon.callbackUrl: CILogonOAuthenticator.oauth_callback_url
gitlab.clientId: GitLabOAuthenticator.client_id
gitlab.clientSecret: GitLabOAuthenticator.client_secret
gitlab.callbackUrl: GitLabOAuthenticator.oauth_callback_url
cilogon.clientId: OAuthenticator.client_id
cilogon.clientSecret: OAuthenticator.client_secret
cilogon.callbackUrl: OAuthenticator.oauth_callback_url
gitlab.clientId: OAuthenticator.client_id
gitlab.clientSecret: OAuthenticator.client_secret
gitlab.callbackUrl: OAuthenticator.oauth_callback_url
gitlab.gitlabGroupWhitelist: GitLabOAuthenticator.allowed_gitlab_groups
gitlab.allowedGitlabGroups: GitLabOAuthenticator.allowed_gitlab_groups
gitlab.gitlabProjectIdWhitelist: GitLabOAuthenticator.allowed_project_ids
gitlab.allowedProjectIds: GitLabOAuthenticator.allowed_project_ids
gitlab.gitlabUrl: GitLabOAuthenticator.gitlab_url
azuread.clientId: AzureAdOAuthenticator.client_id
azuread.clientSecret: AzureAdOAuthenticator.client_secret
azuread.callbackUrl: AzureAdOAuthenticator.oauth_callback_url
azuread.clientId: OAuthenticator.client_id
azuread.clientSecret: OAuthenticator.client_secret
azuread.callbackUrl: OAuthenticator.oauth_callback_url
azuread.tenantId: AzureAdOAuthenticator.tenant_id
azuread.usernameClaim: AzureAdOAuthenticator.username_claim
mediawiki.clientId: MWOAuthenticator.client_id
mediawiki.clientSecret: MWOAuthenticator.client_secret
mediawiki.callbackUrl: MWOAuthenticator.oauth_callback_url
mediawiki.clientId: OAuthenticator.client_id
mediawiki.clientSecret: OAuthenticator.client_secret
mediawiki.callbackUrl: OAuthenticator.oauth_callback_url
mediawiki.indexUrl: MWOAuthenticator.index_url
globus.clientId: GlobusOAuthenticator.client_id
globus.clientSecret: GlobusOAuthenticator.client_secret
globus.callbackUrl: GlobusOAuthenticator.oauth_callback_url
globus.clientId: OAuthenticator.client_id
globus.clientSecret: OAuthenticator.client_secret
globus.callbackUrl: OAuthenticator.oauth_callback_url
hmac.secretKey: HMACAuthenticator.secret_key
dummy.password: DummyAuthenticator.password
lti.consumers: LTIAuthenticator.consumers
Expand Down

0 comments on commit b1a954a

Please sign in to comment.