20 lines
452 B
JavaScript
20 lines
452 B
JavaScript
const commonOptions = [{
|
|||
label: 'Default', value: 'default'
|
|||
}, {
|
|||
label: 'All_Messages', value: 'all'
|
|||
}, {
|
|||
label: 'Mentions', value: 'mentions'
|
|||
}, {
|
|||
label: 'Nothing', value: 'nothing'
|
|||
}];
|
|||
|
|||
export const OPTIONS = {
|
|||
desktopNotifications: commonOptions,
|
|||
mobileNotifications: commonOptions,
|
|||
emailNotificationMode: [{
|
|||
label: 'Email_Notification_Mode_All', value: 'mentions'
|
|||
}, {
|
|||
label: 'Email_Notification_Mode_Disabled', value: 'nothing'
|
|||
}]
|
|||
};
|