OLD | NEW |
1 // Copyright 2017 The LUCI Authors. All rights reserved. | 1 // Copyright 2017 The LUCI Authors. All rights reserved. |
2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
4 | 4 |
5 syntax = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 | 7 |
8 // Schema for settings.cfg service config file in luci-config. | 8 // Schema for settings.cfg service config file in luci-config. |
9 message SettingsCfg { | 9 message SettingsCfg { |
10 // id to inject into pages if applicable. | 10 // id to inject into pages if applicable. |
(...skipping 22 matching lines...) Expand all Loading... |
33 optional string gs_bucket = 4; | 33 optional string gs_bucket = 4; |
34 | 34 |
35 // Email address of Service account used to access Google Storage. | 35 // Email address of Service account used to access Google Storage. |
36 optional string gs_client_id_email = 5; | 36 optional string gs_client_id_email = 5; |
37 | 37 |
38 // Enable ts_mon based monitoring. Default: False. | 38 // Enable ts_mon based monitoring. Default: False. |
39 optional bool enable_ts_monitoring = 6; | 39 optional bool enable_ts_monitoring = 6; |
40 | 40 |
41 // Names of the authorization groups used by components/auth. | 41 // Names of the authorization groups used by components/auth. |
42 optional AuthSettings auth = 7; | 42 optional AuthSettings auth = 7; |
| 43 |
| 44 // oauth client id for the ui. This is created in the developer's console |
| 45 // under Credentials. |
| 46 optional string ui_client_id = 8; |
43 } | 47 } |
44 | 48 |
45 // Access control groups for the isolate service. Custom group names | 49 // Access control groups for the isolate service. Custom group names |
46 // allow several isolate server instances to co-exist under the same | 50 // allow several isolate server instances to co-exist under the same |
47 // "auth" server. | 51 // "auth" server. |
48 // | 52 // |
49 // All groups default to 'administrators'. | 53 // All groups default to 'administrators'. |
50 message AuthSettings { | 54 message AuthSettings { |
51 // Group with read and write access. | 55 // Group with read and write access. |
52 optional string full_access_group = 1; | 56 optional string full_access_group = 1; |
53 // Group with read-only access. | 57 // Group with read-only access. |
54 optional string readonly_access_group = 2; | 58 optional string readonly_access_group = 2; |
55 } | 59 } |
OLD | NEW |