5ddc46c474
* Refactor: Inbox store, remove inboxes from sidebar * Add a new page for inbox settings * Show inboxes on sidebar * Add inbox_members API * Disable similar-code check * Fix codeclimate scss issues * Add widget_color update API and actions * Add specs for inbox store * Fix Facebook auth flow * Fix agent loading, inbox name
27 lines
648 B
JavaScript
Executable file
27 lines
648 B
JavaScript
Executable file
import Vue from 'vue';
|
|
import Vuex from 'vuex';
|
|
|
|
import agents from './modules/agents';
|
|
import auth from './modules/auth';
|
|
import billing from './modules/billing';
|
|
import cannedResponse from './modules/cannedResponse';
|
|
import Channel from './modules/channels';
|
|
import conversations from './modules/conversations';
|
|
import inboxes from './modules/inboxes';
|
|
import inboxMembers from './modules/inboxMembers';
|
|
import reports from './modules/reports';
|
|
|
|
Vue.use(Vuex);
|
|
export default new Vuex.Store({
|
|
modules: {
|
|
agents,
|
|
auth,
|
|
billing,
|
|
cannedResponse,
|
|
Channel,
|
|
conversations,
|
|
inboxes,
|
|
inboxMembers,
|
|
reports,
|
|
},
|
|
});
|