Skip to content

Commit

Permalink
Merge pull request #118 from webitel/WTEL-5363
Browse files Browse the repository at this point in the history
WTEL-5363
  • Loading branch information
navrotskyj authored Jan 24, 2025
2 parents 967f010 + cb63499 commit aab769a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions storage/file_policies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package storage;

import "const.proto";
import "google/api/annotations.proto";
import "file.proto";

service FilePoliciesService {
// Create FilePolicy
Expand Down Expand Up @@ -88,7 +89,7 @@ message FilePolicy {
int64 speed_download = 9;
int64 speed_upload = 10;
string description = 11;
repeated string channels = 12;
repeated UploadFileChannel channels = 12;
int32 retention_days = 13;
int32 position = 14;
int64 max_upload_size = 15;
Expand All @@ -101,7 +102,7 @@ message CreateFilePolicyRequest {
int64 speed_download = 4;
int64 speed_upload = 5;
string description = 6;
repeated string channels = 7;
repeated UploadFileChannel channels = 7;
int32 retention_days = 8;
int64 max_upload_size = 9;
}
Expand Down Expand Up @@ -134,7 +135,7 @@ message UpdateFilePolicyRequest {
int64 speed_download = 5;
int64 speed_upload = 6;
string description = 7;
repeated string channels = 8;
repeated UploadFileChannel channels = 8;
int32 retention_days = 9;
int64 max_upload_size = 10;
}
Expand All @@ -148,7 +149,7 @@ message PatchFilePolicyRequest {
int64 speed_download = 6;
int64 speed_upload = 7;
string description = 8;
repeated string channels = 9;
repeated UploadFileChannel channels = 9;
int32 retention_days = 10;
int64 max_upload_size = 11;
}
Expand Down

0 comments on commit aab769a

Please sign in to comment.