blob: 363c2f648894dc1dbee85e3825413c5c8031309e [file] [log] [blame]
Copybara854996b2021-09-07 19:36:02 +00001# 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
8from __future__ import print_function
9from __future__ import division
10from __future__ import absolute_import
11
12from protorpc import messages
13
14
15class 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