diff options
Diffstat (limited to 'src/mailman/interfaces/member.py')
| -rw-r--r-- | src/mailman/interfaces/member.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mailman/interfaces/member.py b/src/mailman/interfaces/member.py index 52bacc72d..997338835 100644 --- a/src/mailman/interfaces/member.py +++ b/src/mailman/interfaces/member.py @@ -136,8 +136,11 @@ class IMember(Interface): member_id = Attribute( """The member's unique, random identifier as a UUID.""") + list_id = Attribute( + """The list id of the mailing list the member is subscribed to.""") + mailing_list = Attribute( - """The mailing list subscribed to.""") + """The `IMailingList` that the member is subscribed to.""") address = Attribute( """The email address that's subscribed to the list.""") |
