Skip to content

Commit

Permalink
Fix method sig, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Dec 4, 2024
1 parent bafcc91 commit 66fc7a6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ async function submitOIDCLogin(idp: string) {
const { data } = await axios.post(loginUrl, formData, { withCredentials: true });
console.debug("LOGIN POST DATA", data);
if (data.redirect_uri) {
window.location = data.redirect_uri;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/controllers/authnz.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def index(self, trans, **kwargs):

@web.json
@web.expose
def login(self, trans, provider, idphint=None):
def login(self, trans, provider, idphint=None, next=None):
if not trans.app.config.enable_oidc:
msg = "Login to Galaxy using third-party identities is not enabled on this Galaxy instance."
log.debug(msg)
Expand Down

0 comments on commit 66fc7a6

Please sign in to comment.