Skip to content

Commit

Permalink
New Elixir OIDC endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
viklund committed Apr 10, 2018
1 parent 9139b7e commit bfdde7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ def get(self):


class ElixirLoginHandler(BaseHandler, tornado.auth.OAuth2Mixin):
_OAUTH_AUTHORIZE_URL = "https://perun.elixir-czech.cz/oidc/authorize"
_OAUTH_ACCESS_TOKEN_URL = "https://perun.elixir-czech.cz/oidc/token"
_OAUTH_USERINFO_ENDPOINT = "https://perun.elixir-czech.cz/oidc/userinfo"
_OAUTH_AUTHORIZE_URL = "https://login.elixir-czech.org/oidc/authorize"
_OAUTH_ACCESS_TOKEN_URL = "https://login.elixir-czech.org/oidc/token"
_OAUTH_USERINFO_ENDPOINT = "https://login.elixir-czech.org/oidc/userinfo"
_OAUTH_SETTINGS_KEY = 'elixir_oauth'

def _generate_state(self):
Expand Down

0 comments on commit bfdde7e

Please sign in to comment.