32 lines
1.4 KiB
JavaScript
32 lines
1.4 KiB
JavaScript
// URL Paths
|
|
export const LOGIN_PAGE = '/login';
|
|
export const REGISTER_PAGE = '/register';
|
|
export const RESET_PAGE = '/reset';
|
|
export const WELCOME_PAGE = '/welcome';
|
|
export const DEFAULT_REDIRECT_URL = '/dashboard';
|
|
export const PASSWORD_RESET_CONFIRM = '/password_reset_confirm/:token/';
|
|
export const PAGE_NOT_FOUND = '/notfound';
|
|
export const ENTERPRISE_LOGIN_URL = '/enterprise/login';
|
|
|
|
// Constants
|
|
export const SUPPORTED_ICON_CLASSES = ['apple', 'facebook', 'google', 'microsoft'];
|
|
|
|
// Error Codes
|
|
export const INTERNAL_SERVER_ERROR = 'internal-server-error';
|
|
export const API_RATELIMIT_ERROR = 'api-ratelimit-error';
|
|
|
|
// States
|
|
export const DEFAULT_STATE = 'default';
|
|
export const PENDING_STATE = 'pending';
|
|
export const COMPLETE_STATE = 'complete';
|
|
|
|
// Regex
|
|
export const VALID_EMAIL_REGEX = '(^[-!#$%&\'*+/=?^_`{}|~0-9A-Z]+(\\.[-!#$%&\'*+/=?^_`{}|~0-9A-Z]+)*'
|
|
+ '|^"([\\001-\\010\\013\\014\\016-\\037!#-\\[\\]-\\177]|\\\\[\\001-\\011\\013\\014\\016-\\177])*"'
|
|
+ ')@((?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\\.)+)(?:[A-Z0-9-]{2,63})'
|
|
+ '|\\[(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\]$';
|
|
|
|
// Query string parameters that can be passed to LMS to manage
|
|
// things like auto-enrollment upon login and registration.
|
|
export const AUTH_PARAMS = ['course_id', 'enrollment_action', 'course_mode', 'email_opt_in', 'purchase_workflow', 'next'];
|