1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 2010-2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Enums for the Bugs app."""
__metaclass__ = type
__all__ = [
'BugNotificationLevel',
'BugNotificationStatus',
]
from lazr.enum import (
DBEnumeratedType,
DBItem,
)
class BugNotificationLevel(DBEnumeratedType):
"""Bug Notification Level.
The type and volume of bug notification email sent to subscribers.
"""
LIFECYCLE = DBItem(20, """
Lifecycle
Only send a low volume of notifications about new bugs registered,
bugs removed or bug targetting.
""")
METADATA = DBItem(30, """
Details
Send bug lifecycle notifications, as well as notifications about
changes to the bug's details like status and description.
""")
COMMENTS = DBItem(40, """
Discussion
Send bug lifecycle notifications, detail change notifications and
notifications about new events in the bugs's discussion, like new
comments.
""")
class BugNotificationStatus(DBEnumeratedType):
"""The status of a bug notification.
A notification may be pending, sent, or omitted."""
PENDING = DBItem(10, """
Pending
The notification has not yet been sent.
""")
OMITTED = DBItem(20, """
Omitted
The system considered sending the notification, but omitted it.
This is generally because the action reported by the notification
was immediately undone.
""")
SENT = DBItem(30, """
Sent
The notification has been sent.
""")
DEFERRED = DBItem(40, """
Deferred
The notification is deferred. The recipient list was not calculated
at creation time but is done when processed.
""")
|