fix(API): remove deprecated organisation_id from user factor in session service (#7631)

This commit is contained in:
Livio Spring
2024-03-26 12:25:40 +01:00
committed by GitHub
parent 2021bad0ad
commit a83829b5ff
3 changed files with 3 additions and 12 deletions

View File

@@ -59,6 +59,8 @@ message Factors {
}
message UserFactor {
reserved 5;
reserved "organisation_id";
google.protobuf.Timestamp verified_at = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "\"time when the user was last checked\"";
@@ -79,12 +81,6 @@ message UserFactor {
description: "\"display name of the checked user\"";
}
];
// deprecated: use organization_id, will be remove before GA (https://github.com/zitadel/zitadel/issues/6718)
string organisation_id = 5 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "\"organization id of the checked user; deprecated: use organization_id\"";
}
];
string organization_id = 6 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "\"organization id of the checked user\"";
@@ -179,4 +175,4 @@ message UserAgent {
enum SessionFieldName {
SESSION_FIELD_NAME_UNSPECIFIED = 0;
SESSION_FIELD_NAME_CREATION_DATE = 1;
}
}