blob: 14b61ac0c020a868244a9f0f0f1998726adbfa39 [file] [log] [blame]
Copybara854996b2021-09-07 19:36:02 +00001// Copyright 2018 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
6syntax = "proto3";
7
8package monorail;
9
10import "api/api_proto/common.proto";
11import "api/api_proto/issue_objects.proto";
12
13
14// Next available tag: 9
15message Hotlist {
16 UserRef owner_ref = 1;
17 repeated UserRef editor_refs = 5;
18 repeated UserRef follower_refs = 6;
19 string name = 2;
20 string summary = 3;
21 string description = 4;
22 string default_col_spec = 7;
23 bool is_private = 8;
24}
25
26
27// Next available tag: 6
28message HotlistItem {
29 Issue issue = 1;
30 uint32 rank = 2;
31 UserRef adder_ref = 3;
32 uint32 added_timestamp = 4;
33 string note = 5;
34}
35
36
37// Next available tag: 5
38message HotlistPeopleDelta {
39 UserRef new_owner_ref = 1;
40 repeated UserRef add_editor_refs = 2;
41 repeated UserRef add_follower_refs = 3;
42 repeated UserRef remove_user_refs = 4;
43}