~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Edwin Grubbs
  • Date: 2010-09-30 20:39:02 UTC
  • mto: (7675.785.225 launchpad)
  • mto: This revision was merged to the branch mainline in revision 11695.
  • Revision ID: edwin.grubbs@canonical.com-20100930203902-bbj86nmtuezf48j5
Addressed more review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
class IMembershipNotificationJob(IPersonTransferJob):
62
62
    """A Job to notify new members of a team of that change."""
63
63
 
 
64
    member = PublicPersonChoice(
 
65
        title=_('Alias for minor_person attribute'),
 
66
        vocabulary='ValidPersonOrTeam',
 
67
        required=True)
 
68
 
 
69
    team = PublicPersonChoice(
 
70
        title=_('Alias for major_person attribute'),
 
71
        vocabulary='ValidPersonOrTeam',
 
72
        required=True)
 
73
 
64
74
 
65
75
class IMembershipNotificationJobSource(IJobSource):
66
76
    """An interface for acquiring IMembershipNotificationJobs."""