Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1428)

Unified Diff: milo/common/config/settings.proto

Issue 2760873003: Milo: Use luci-config for storing buildbot acls (Closed)
Patch Set: Fix tests Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/common/config/project.pb.go ('k') | milo/common/config/settings.pb.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/common/config/settings.proto
diff --git a/milo/common/config/settings.proto b/milo/common/config/settings.proto
new file mode 100644
index 0000000000000000000000000000000000000000..a843a49cdf535a08912701f168ef17ce02f3a956
--- /dev/null
+++ b/milo/common/config/settings.proto
@@ -0,0 +1,17 @@
+// Copyright (c) 2016 The LUCI Authors. All rights reserved.
+// Use of this source code is governed under the Apache License, Version 2.0
+// that can be found in the LICENSE file.
+
+syntax = "proto3";
+
+package config;
+
+// Settings represents the format for the global (service) config for Milo.
+message Settings{
+ message Buildbot{
+ // internal_reader is the infra-auth group that is allowed to read internal
+ // buildbot data.
+ string internal_reader = 1;
+ }
+ Buildbot buildbot = 1;
+}
« no previous file with comments | « milo/common/config/project.pb.go ('k') | milo/common/config/settings.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698