Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 1 | # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style |
| 3 | # license that can be found in the LICENSE file or at |
| 4 | # https://developers.google.com/open-source/licenses/bsd |
| 5 | |
| 6 | """Protocol buffers for Monorail site-wide features.""" |
| 7 | |
| 8 | from __future__ import print_function |
| 9 | from __future__ import division |
| 10 | from __future__ import absolute_import |
| 11 | |
| 12 | from protorpc import messages |
| 13 | |
| 14 | |
| 15 | class UserTypeRestriction(messages.Enum): |
| 16 | """An enum for site-wide settings about who can take an action.""" |
| 17 | # Anyone may do it. |
| 18 | ANYONE = 1 |
| 19 | |
| 20 | # Only domain admins may do it. |
| 21 | ADMIN_ONLY = 2 |
| 22 | |
| 23 | # No one may do it, the feature is basically disabled. |
| 24 | NO_ONE = 3 |
| 25 | |
| 26 | # TODO(jrobbins): implement same-domain users |