When Drupal attempts to enroll a user in a closed course, a 406 will be returned. This causes the marketing site to redirect to the track selection page for that course, which will then redirect to the dashboard with a nice message. ECOM-2317
21 lines
1013 B
Python
21 lines
1013 B
Python
""" Constants for this app as well as the external API. """
|
|
|
|
|
|
class OrderStatus(object):
|
|
"""Constants representing all known order statuses. """
|
|
OPEN = 'Open'
|
|
FULFILLMENT_ERROR = 'Fulfillment Error'
|
|
COMPLETE = 'Complete'
|
|
|
|
|
|
class Messages(object):
|
|
""" Strings used to populate response messages. """
|
|
NO_ECOM_API = u'E-Commerce API not setup. Enrolled {username} in {course_id} directly.'
|
|
NO_SKU_ENROLLED = u'The {enrollment_mode} mode for {course_id} does not have a SKU. Enrolling {username} directly.'
|
|
ORDER_COMPLETED = u'Order {order_number} was completed.'
|
|
ORDER_INCOMPLETE_ENROLLED = u'Order {order_number} was created, but is not yet complete. User was enrolled.'
|
|
NO_HONOR_MODE = u'Course {course_id} does not have an honor mode.'
|
|
NO_DEFAULT_ENROLLMENT_MODE = u'Course {course_id} does not have an honor or audit mode.'
|
|
ENROLLMENT_EXISTS = u'User {username} is already enrolled in {course_id}.'
|
|
ENROLLMENT_CLOSED = u'Enrollment is closed for {course_id}.'
|