Chromium Code Reviews| 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..a06832c8a6a4c8635a87fa90c7d4b443366d98f9 |
| --- /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{ |
| + // buildbot_reader is the infra-auth group that is allowed to read internal |
| + // buildbot data. |
| + string buildbot_internal_reader = 1; |
|
nodir
2017/03/21 01:06:51
s/buildbot_internal_reader/internal_reader/
hinoka
2017/03/21 04:54:53
Oh right, of course. Done
|
| + } |
| + Buildbot buildbot = 1; |
| +} |