diff --git a/aruna/api/storage/models/v1/auth.proto b/aruna/api/storage/models/v1/auth.proto index 23e1c041..76cff229 100644 --- a/aruna/api/storage/models/v1/auth.proto +++ b/aruna/api/storage/models/v1/auth.proto @@ -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 { @@ -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 { diff --git a/aruna/api/storage/services/v1/project_service.proto b/aruna/api/storage/services/v1/project_service.proto index d9845fbf..089eab6b 100644 --- a/aruna/api/storage/services/v1/project_service.proto +++ b/aruna/api/storage/services/v1/project_service.proto @@ -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 { @@ -220,6 +222,8 @@ message UpdateProjectRequest { string name = 2; // Update description string description = 3; + // Project binary flag(s) + int64 flag = 4; } message UpdateProjectResponse {