Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Sep 19, 2024
1 parent 3b86ad2 commit e739418
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ public static final class Endpoint {
public Response authResponse(
@QueryParam(PROVIDER_PARAMETER_TICKET) final String ticket,
@CookieParam(STATE_COOKIE_NAME) final Cookie stateCookie) {
return callback.authenticated(getFederatedIdentity(
config, ticket, session.getContext().getUri(), stateCookie.getValue()));
return callback.authenticated(
getFederatedIdentity(
config, ticket, session.getContext().getUri(), stateCookie.getValue()));
}

@GET
Expand Down

0 comments on commit e739418

Please sign in to comment.