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/apps/meteor/app/livechat/client/tabBar.ts

31 lines
909 B

import { lazy } from 'react';
import { addAction } from '../../../client/views/room/lib/Toolbox';
addAction('room-info', {
groups: ['live' /* , 'voip'*/],
id: 'room-info',
title: 'Room_Info',
icon: 'info-circled',
template: lazy(() => import('../../../client/views/omnichannel/directory/chats/contextualBar/ChatsContextualBar')),
order: 0,
});
addAction('voip-room-info', {
groups: ['voip'],
id: 'voip-room-info',
title: 'Call_Information',
icon: 'info-circled',
template: lazy(() => import('../../../client/views/omnichannel/directory/calls/contextualBar/CallsContextualBarRoom')),
order: 0,
});
addAction('contact-chat-history', {
groups: ['live' /* , 'voip'*/],
id: 'contact-chat-history',
title: 'Contact_Chat_History',
icon: 'clock',
// template: 'contactChatHistory',
template: lazy(() => import('../../../client/views/omnichannel/contactHistory/ContactHistory')),
order: 11,
});