fix: Fix OIDC example (#6138)

* fix: oidc app additional origins example

* fix: oidc app additional origins example
This commit is contained in:
Fabi 2023-07-07 14:21:02 +02:00 committed by GitHub
parent d8b823660b
commit 5f5f1558d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8935,8 +8935,8 @@ message AddOIDCAppRequest {
];
repeated string additional_origins = 16 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "[\"https://console.zitadel.ch/auth/callback\"]";
description: "Additional origins (other than the redirect_uris) from where the API can be used";
example: "[\"scheme://localhost:8080\"]";
description: "Additional origins (other than the redirect_uris) from where the API can be used, provided string has to be an origin (scheme://hostname[:port]) without path, query or fragment";
}
];
bool skip_native_app_success_page = 17 [
@ -9110,8 +9110,8 @@ message UpdateOIDCAppConfigRequest {
];
repeated string additional_origins = 15 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "[\"https://console.zitadel.ch/auth/callback\"]";
description: "Additional origins (other than the redirect_uris) from where the API can be used";
example: "[\"scheme://localhost:8080\"]";
description: "Additional origins (other than the redirect_uris) from where the API can be used, provided string has to be an origin (scheme://hostname[:port]) without path, query or fragment";
}
];
bool skip_native_app_success_page = 16 [