summaryrefslogtreecommitdiff
path: root/repo.proto
diff options
context:
space:
mode:
Diffstat (limited to 'repo.proto')
-rw-r--r--repo.proto18
1 files changed, 9 insertions, 9 deletions
diff --git a/repo.proto b/repo.proto
index 4e07d79..4b087b4 100644
--- a/repo.proto
+++ b/repo.proto
@@ -11,15 +11,15 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time
// for example 'zookeeper' is packaged as 'zookeeper-go'
// due to the prior apache foundation project. This happens and is ok!
message Repo {
- string name = 1;
- string version = 2;
- string masterBranch = 3; // git 'main' or 'master' branch name
- string develBranch = 4; // whatever the git 'devel' branch name is
- string userBranch = 5; // whatever your username branch is
- bool readonly = 6; // if you have write access to the repo
- bool private = 7; // if the repo can be published
- string debname = 8; // this is the actual .deb name of the package
- string goPath = 9; // Examples: 'go.wit.com/apps/go-clone' or "~/mythings" or "/home/src/foo"
+ string goPath = 1; // Examples: 'go.wit.com/apps/go-clone' or "~/mythings" or "/home/src/foo"
+ bool writable = 2; // if you have write access to the repo
+ bool readOnly = 3; // the opposite, but needed for now because I don't know what I'm doing
+ bool private = 4; // if the repo can be published
+ bool directory = 5; // everything in this directory should use these writable & private values
+ string masterBranch = 6; // git 'main' or 'master' branch name
+ string develBranch = 7; // whatever the git 'devel' branch name is
+ string userBranch = 8; // whatever your username branch is
+ string debname = 9; // this is the actual .deb name of the package
google.protobuf.Timestamp verstamp = 10; // the git commit timestamp of the version
}