diff options
| author | John Estabrook <jestabro@vyos.io> | 2026-02-24 21:49:53 -0600 |
|---|---|---|
| committer | John Estabrook <jestabro@vyos.io> | 2026-03-04 15:44:38 +0100 |
| commit | 4b230675b41eea167af01ed3ea4bbd99f1a42dc5 (patch) | |
| tree | 8999f1ac7aa74d0d8ae402cd25802aee4b038a7e /data | |
| parent | c024aafe1224e828b8dcc4318fc423665d388091 (diff) | |
| download | vyconf-4b230675b41eea167af01ed3ea4bbd99f1a42dc5.tar.gz vyconf-4b230675b41eea167af01ed3ea4bbd99f1a42dc5.zip | |
T8313: adjust copy/rename messages
The original messages were added before edit-level was properly
implemented as a field of the session record.
Diffstat (limited to 'data')
| -rw-r--r-- | data/vyconf.proto | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index 6ba6e6a..c26dac6 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -69,16 +69,14 @@ message Request { optional int32 dummy = 1; } - message Rename { - repeated string edit_level = 1; - required string source = 2; - required string destination = 3; + message Copy { + repeated string source = 1; + repeated string destination = 2; } - message Copy { - repeated string edit_level = 1; - required string source = 2; - required string destination = 3; + message Rename { + repeated string source = 1; + repeated string destination = 2; } message Comment { |
