Skip to content

Commit 2685dff

Browse files
committed
chore: add id and name to projects in SearchOrganizationServiceUsers
1 parent ac8451c commit 2685dff

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

raystack/frontier/v1beta1/admin.proto

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1664,11 +1664,16 @@ message SearchOrganizationServiceUsersRequest {
16641664
}
16651665

16661666
message SearchOrganizationServiceUsersResponse {
1667+
message Project {
1668+
string id = 1;
1669+
string title = 2;
1670+
string name = 3;
1671+
}
16671672
message OrganizationServiceUser {
16681673
string id = 1;
16691674
string title = 2;
16701675
string org_id = 3;
1671-
repeated string project_titles = 4;
1676+
repeated Project projects = 4;
16721677
google.protobuf.Timestamp created_at = 5;
16731678
}
16741679

0 commit comments

Comments
 (0)