Skip to content

Commit

Permalink
Merge pull request #43184 from sberyozkin/oidc_endpoint_registered_cl…
Browse files Browse the repository at this point in the history
…ient

Change OidcEndpoint.Type for the dynamically registered client
  • Loading branch information
sberyozkin authored Sep 10, 2024
2 parents efc56ec + e14412e commit e3b1b23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private HttpRequest<Buffer> filter(HttpRequest<Buffer> request, Buffer body) {
OidcRequestContextProperties props = new OidcRequestContextProperties();
OidcRequestContext context = new OidcRequestContext(request, body, props);
for (OidcRequestFilter filter : OidcCommonUtils.getMatchingOidcRequestFilters(filters,
OidcEndpoint.Type.CLIENT_CONFIGURATION)) {
OidcEndpoint.Type.REGISTERED_CLIENT)) {
filter.filter(context);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ enum Type {
*/
CLIENT_REGISTRATION,
/**
* Applies to the configuration requests of the dynamically registered OIDC clients
* Applies to requests to dynamically registered OIDC client endpoints
*/
CLIENT_CONFIGURATION
REGISTERED_CLIENT
}

/**
Expand Down

0 comments on commit e3b1b23

Please sign in to comment.