chore(api)!: added new fields to contract

This commit is contained in:
ITQ
2025-12-20 18:06:28 +03:00
parent 31738d3a0a
commit acfe7275eb
6 changed files with 60 additions and 19 deletions
+3 -1
View File
@@ -32,6 +32,7 @@ message Task {
int32 max_points = 6;
int32 max_attempts = 7;
TaskType type = 8;
string answer_url = 11;
google.protobuf.Timestamp created_at = 9;
google.protobuf.Timestamp updated_at = 10;
}
@@ -39,7 +40,8 @@ message Task {
message TaskAttachment {
string id = 1;
string file_url = 2;
bool is_public = 3;
string mountpoint = 3;
bool is_public = 4;
}
message GetTaskRequest {