vn-verdnaturachat/app/views/UserNotificationPreferences.../options.js

34 lines
491 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'
}
]
};