- Fixed 'Ask Info' and 'Book' if the email arrived... - Added "Settings" table: URL_FACEBOOK, TELEGRAM_SUPPORT, URL_INSTAGRAM, WHATSAPP_CELL, INT_CODE, MAIN_EMAIL, CONTACTS_EMAIL_CELL, CALL_WORKING_DAYS, EVENTS_CAL, MSG_REPLY_AFTER_BOOKING. -
19 lines
356 B
JavaScript
19 lines
356 B
JavaScript
module.exports = {
|
|
|
|
Permissions: {
|
|
Admin: 1,
|
|
Manager: 2,
|
|
Teacher: 4,
|
|
},
|
|
|
|
MessageOptions: {
|
|
Notify_ByEmail: 2,
|
|
Notify_ByPushNotification: 4
|
|
},
|
|
|
|
fieldsUserToChange() {
|
|
return ['_id', 'username', 'email', 'cell', 'name', 'surname', 'perm', 'date_reg', 'verified_email', 'img', 'ipaddr', 'lasttimeonline', 'profile']
|
|
}
|
|
|
|
};
|