~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/interfaces/role.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 21:53:34 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527215334-jqlkmt52nnl4bpeh
Moved launchpad.event into registry interfaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    in_admin = Bool(
71
71
        title=_("True if this person is a Launchpad admin."),
72
72
        required=True, readonly=True)
 
73
    in_bazaar_experts = Bool(
 
74
        title=_("True if this person is a Bazaar expert."),
 
75
        required=True, readonly=True)
73
76
    in_software_center_agent = Bool(
74
77
        title=_("True if this person is the Software Center Agent."),
75
78
        required=True, readonly=True)
94
97
    in_katie = Bool(
95
98
        title=_("True if this person is Katie."),
96
99
        required=True, readonly=True)
 
100
    in_launchpad_beta_testers = Bool(
 
101
        title=_("True if this person is a Launchpad beta tester."),
 
102
        required=True, readonly=True)
97
103
    in_launchpad_developers = Bool(
98
104
        title=_("True if this person is a Launchpad developer."),
99
105
        required=True, readonly=True)
106
112
    in_rosetta_experts = Bool(
107
113
        title=_("True if this person is a rosetta expert."),
108
114
        required=True, readonly=True)
 
115
    in_ubuntu_branches = Bool(
 
116
        title=_("True if this person is on the Ubuntu branches team."),
 
117
        required=True, readonly=True)
109
118
    in_ubuntu_security = Bool(
110
119
        title=_("True if this person is on the Ubuntu security team."),
111
120
        required=True, readonly=True)