feat: oidc provider config route

feat: add auth config attributes `API_HOSTNAME` and `API_PUBLIC_URL`

feat: `introspectionEndpoint` and `revocationEndpoint` for `GetOpenIDProviderConfigResponse`
This commit is contained in:
2025-09-29 21:07:45 +01:00
parent 958f96b3e5
commit 1b0cc09aad
6 changed files with 321 additions and 256 deletions

View File

@@ -853,6 +853,10 @@ definitions:
type: string
tokenEndpoint:
type: string
introspectionEndpoint:
type: string
revocationEndpoint:
type: string
userinfoEndpoint:
type: string
jwksUri:

View File

@@ -138,8 +138,12 @@ message GetOpenIDProviderConfigRequest {}
message GetOpenIDProviderConfigResponse {
string issuer = 1;
string authorization_endpoint = 2;
string token_endpoint = 3;
string introspection_endpoint = 9;
string revocation_endpoint = 10;
string userinfo_endpoint = 4;
string jwks_uri = 5;