Skip to content
Snippets Groups Projects
Commit 0fc14d60 authored by Evgeny Bardin's avatar Evgeny Bardin
Browse files

OZG-7092 adjust tokencheck.model.proto

parent 208e7e9f
No related branches found
No related tags found
1 merge request!1OZG-7092 Anpassung TokenChecker
...@@ -20,4 +20,4 @@ Zentraler Dienst um (Saml-)Token auf Gültigkeit zu prüfen. Unterstützt werden ...@@ -20,4 +20,4 @@ Zentraler Dienst um (Saml-)Token auf Gültigkeit zu prüfen. Unterstützt werden
* name: String * name: String
* value: String * value: String
* checkError * checkError
* message: String * checkErrors: GrpcError
\ No newline at end of file
...@@ -14,7 +14,7 @@ message GrpcCheckTokenResponse { ...@@ -14,7 +14,7 @@ message GrpcCheckTokenResponse {
bool tokenValid = 1; bool tokenValid = 1;
oneof checkTokenResult { oneof checkTokenResult {
GrpcTokenAttributes tokenAttributes = 2; GrpcTokenAttributes tokenAttributes = 2;
GrpcCheckError checkError = 3; GrpcCheckErrors checkError = 3;
} }
} }
...@@ -29,6 +29,10 @@ message GrpcOtherField { ...@@ -29,6 +29,10 @@ message GrpcOtherField {
string value = 2; string value = 2;
} }
message GrpcCheckErrors {
repeated GrpcCheckError message = 1;
}
message GrpcCheckError { message GrpcCheckError {
string message = 1; string message = 1;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment