Skip to content

Commit

Permalink
Change OidcEndpoint.Type for the dynamically registered client
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin committed Sep 10, 2024
1 parent 082433a commit e14412e
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 e14412e

Please sign in to comment.