summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2026-03-04 08:47:29 -0600
committerGitHub <noreply@github.com>2026-03-04 08:47:29 -0600
commite25b13ae3040d02326f01bf9bedd097795fb3a62 (patch)
tree6e7ab4f1a6f8ea98f16503a07a34f138f295e193 /data
parent2c16a5ad7171362d71ff241adab873fa3752b784 (diff)
parent3147fb1498070eccc733e3e3ff70281e5d8a8064 (diff)
downloadvyconf-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.proto14
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 {