SciPost Code Repository

Skip to content
Snippets Groups Projects
constants.py 435 B
Newer Older
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
MAIL_LIST_STATUS_ACTIVE = 'active'
MAIL_LIST_STATUS_DEACTIVATED = 'deactivated'
MAIL_LIST_STATUSES = (
    (MAIL_LIST_STATUS_ACTIVE, 'Active'),
    (MAIL_LIST_STATUS_DEACTIVATED, 'Deactivated'),
)

MAILCHIMP_SUBSCRIBED = 'subscribed'
MAILCHIMP_STATUSES = (
    (MAILCHIMP_SUBSCRIBED, 'Subscribed'),
    ('unsubscribed', 'Unsubscribed'),
)