diff options
| author | John Estabrook <jestabro@vyos.io> | 2026-03-04 08:47:29 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 08:47:29 -0600 |
| commit | e25b13ae3040d02326f01bf9bedd097795fb3a62 (patch) | |
| tree | 6e7ab4f1a6f8ea98f16503a07a34f138f295e193 /data | |
| parent | 2c16a5ad7171362d71ff241adab873fa3752b784 (diff) | |
| parent | 3147fb1498070eccc733e3e3ff70281e5d8a8064 (diff) | |
| download | vyconf-e25b13ae3040d02326f01bf9bedd097795fb3a62.tar.gz vyconf-e25b13ae3040d02326f01bf9bedd097795fb3a62.zip | |
Merge pull request #43 from jestabro/copy-rename-requests
T8313: add vyconf support for copy/rename
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 { |
