439e064d90
* Add Contact panel changes * Fix parent iframe blocked * Add Conversation Panel, Contact messages * Update contact panel with conversation details * Update designs in sidebar * Fix specs * Specs: Add specs for conversationMetadata and contact modules * Fix currentUrl issues * Fix spelling * Set default to empty string
28 lines
936 B
JavaScript
28 lines
936 B
JavaScript
/* eslint-disable */
|
|
import { default as _agentMgmt } from './agentMgmt.json';
|
|
import { default as _billing } from './billing.json';
|
|
import { default as _cannedMgmt } from './cannedMgmt.json';
|
|
import { default as _chatlist } from './chatlist.json';
|
|
import { default as _contact } from './contact.json';
|
|
import { default as _conversation } from './conversation.json';
|
|
import { default as _inboxMgmt } from './inboxMgmt.json';
|
|
import { default as _login } from './login.json';
|
|
import { default as _report } from './report.json';
|
|
import { default as _resetPassword } from './resetPassword.json';
|
|
import { default as _setNewPassword } from './setNewPassword.json';
|
|
import { default as _signup } from './signup.json';
|
|
|
|
export default {
|
|
..._agentMgmt,
|
|
..._billing,
|
|
..._cannedMgmt,
|
|
..._chatlist,
|
|
..._contact,
|
|
..._conversation,
|
|
..._inboxMgmt,
|
|
..._login,
|
|
..._report,
|
|
..._resetPassword,
|
|
..._setNewPassword,
|
|
..._signup,
|
|
};
|