The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rocket.Chat/packages/rocketchat-livechat/config.js

198 lines
5.6 KiB

Meteor.startup(function() {
RocketChat.settings.addGroup('Livechat');
RocketChat.settings.add('Livechat_enabled', false, { type: 'boolean', group: 'Livechat', public: true });
RocketChat.settings.add('Livechat_title', 'Rocket.Chat', { type: 'string', group: 'Livechat', public: true });
RocketChat.settings.add('Livechat_title_color', '#C1272D', { type: 'color', group: 'Livechat', public: true });
RocketChat.settings.add('Livechat_display_offline_form', true, {
type: 'boolean',
group: 'Livechat',
public: true,
section: 'Offline',
i18nLabel: 'Display_offline_form'
});
RocketChat.settings.add('Livechat_offline_form_unavailable', '', {
type: 'string',
group: 'Livechat',
public: true,
section: 'Offline',
i18nLabel: 'Offline_form_unavailable_message'
});
RocketChat.settings.add('Livechat_offline_title', 'Leave a message', {
type: 'string',
group: 'Livechat',
public: true,
section: 'Offline',
i18nLabel: 'Title'
});
RocketChat.settings.add('Livechat_offline_title_color', '#666666', {
type: 'color',
group: 'Livechat',
public: true,
section: 'Offline',
i18nLabel: 'Color'
});
RocketChat.settings.add('Livechat_offline_message', 'We are not online right now. Please leave us a message:', {
type: 'string',
group: 'Livechat',
public: true,
section: 'Offline',
i18nLabel: 'Instructions',
i18nDescription: 'Instructions_to_your_visitor_fill_the_form_to_send_a_message'
});
RocketChat.settings.add('Livechat_offline_email', '', {
type: 'string',
group: 'Livechat',
i18nLabel: 'Email_address_to_send_offline_messages',
section: 'Offline'
});
RocketChat.settings.add('Livechat_offline_success_message', '', {
type: 'string',
group: 'Livechat',
public: true,
section: 'Offline',
i18nLabel: 'Offline_success_message'
});
RocketChat.settings.add('Livechat_registration_form', true, { type: 'boolean', group: 'Livechat', public: true, i18nLabel: 'Show_preregistration_form' });
RocketChat.settings.add('Livechat_guest_count', 1, { type: 'int', group: 'Livechat' });
RocketChat.settings.add('Livechat_Room_Count', 1, {
type: 'int',
group: 'Livechat',
i18nLabel: 'Livechat_room_count'
});
RocketChat.settings.add('Livechat_agent_leave_action', 'none', {
type: 'select',
group: 'Livechat',
values: [
{ key: 'none', i18nLabel: 'None' },
{ key: 'forward', i18nLabel: 'Forward' },
{ key: 'close', i18nLabel: 'Close' }
],
i18nLabel: 'How_to_handle_open_sessions_when_agent_goes_offline'
});
RocketChat.settings.add('Livechat_agent_leave_action_timeout', 60, {
type: 'int',
group: 'Livechat',
enableQuery: { _id: 'Livechat_agent_leave_action', value: { $ne: 'none' } },
i18nLabel: 'How_long_to_wait_after_agent_goes_offline',
i18nDescription: 'Time_in_seconds'
});
RocketChat.settings.add('Livechat_agent_leave_comment', '', {
type: 'string',
group: 'Livechat',
enableQuery: { _id: 'Livechat_agent_leave_action', value: 'close' },
i18nLabel: 'Comment_to_leave_on_closing_session'
});
RocketChat.settings.add('Livechat_webhookUrl', false, {
type: 'string',
group: 'Livechat',
section: 'CRM Integration',
i18nLabel: 'Webhook_URL'
});
RocketChat.settings.add('Livechat_secret_token', false, {
type: 'string',
group: 'Livechat',
section: 'CRM Integration',
i18nLabel: 'Secret_token'
});
RocketChat.settings.add('Livechat_webhook_on_close', false, {
type: 'boolean',
group: 'Livechat',
section: 'CRM Integration',
i18nLabel: 'Send_request_on_chat_close'
});
RocketChat.settings.add('Livechat_webhook_on_offline_msg', false, {
type: 'boolean',
group: 'Livechat',
section: 'CRM Integration',
i18nLabel: 'Send_request_on_offline_messages'
});
RocketChat.settings.add('Livechat_Knowledge_Enabled', false, {
type: 'boolean',
group: 'Livechat',
section: 'Knowledge Base',
public: true,
i18nLabel: 'Enabled'
});
RocketChat.settings.add('Livechat_Knowledge_Apiai_Key', '', {
type: 'string',
group: 'Livechat',
section: 'Knowledge Base',
public: true,
i18nLabel: 'Apiai_Key'
});
RocketChat.settings.add('Livechat_Knowledge_Apiai_Language', 'en', {
type: 'string',
group: 'Livechat',
section: 'Knowledge Base',
public: true,
i18nLabel: 'Apiai_Language'
});
RocketChat.settings.add('Livechat_history_monitor_type', 'url', {
type: 'select',
group: 'Livechat',
i18nLabel: 'Monitor_history_for_changes_on',
values: [
{ key: 'url', i18nLabel: 'Page_URL' },
{ key: 'title', i18nLabel: 'Page_title' }
]
});
RocketChat.settings.add('Livechat_Routing_Method', 'Least_Amount', {
type: 'select',
group: 'Livechat',
public: true,
values: [
{key: 'Least_Amount', i18nLabel: 'Least_Amount'},
{key: 'Guest_Pool', i18nLabel: 'Guest_Pool'}
]
});
RocketChat.settings.add('Livechat_guest_pool_with_no_agents', false, {
type: 'boolean',
group: 'Livechat',
i18nLabel: 'Accept_with_no_online_agents',
i18nDescription: 'Accept_incoming_livechat_requests_even_if_there_are_no_online_agents',
enableQuery: { _id: 'Livechat_Routing_Method', value: 'Guest_Pool' }
});
RocketChat.settings.add('Livechat_show_queue_list_link', false, {
type: 'boolean',
group: 'Livechat',
public: true,
i18nLabel: 'Show_queue_list_to_all_agents'
});
RocketChat.settings.add('Livechat_enable_office_hours', false, {
type: 'boolean',
group: 'Livechat',
public: true,
i18nLabel: 'Office_Hours_Enabled'
});
RocketChat.settings.add('Livechat_videocall_enabled', false, {
type: 'boolean',
group: 'Livechat',
public: true,
i18nLabel: 'Videocall_enabled',
i18nDescription: 'Beta_feature_Depends_on_Video_Conference_to_be_enabled',
enableQuery: { _id: 'Jitsi_Enabled', value: true }
});
});