Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions aruna/api/storage/models/v1/auth.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ message Project {
repeated ProjectPermission user_permissions = 3;
repeated string collection_ids = 4;
string description = 5;
// Project binary flag(s)
int64 flags = 6;
}

message ProjectOverview {
Expand All @@ -22,6 +24,8 @@ message ProjectOverview {
string description = 3;
repeated string collection_ids = 4;
repeated string user_ids = 5;
// Project binary flag(s)
int64 flags = 6;
}

message User {
Expand Down
4 changes: 4 additions & 0 deletions aruna/api/storage/services/v1/project_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ message CreateProjectRequest {
string name = 1;
// Description for the project
string description = 2;
// Project binary flag(s)
int64 flag = 3;
}

message CreateProjectResponse {
Expand Down Expand Up @@ -220,6 +222,8 @@ message UpdateProjectRequest {
string name = 2;
// Update description
string description = 3;
// Project binary flag(s)
int64 flag = 4;
}

message UpdateProjectResponse {
Expand Down