Feature: As a admin, I should be able to add webhooks to account (#572)

Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
This commit is contained in:
Nithin David Thomas
2020-02-29 17:43:49 +05:30
committed by GitHub
parent e8cf59c661
commit c119c6577b
36 changed files with 845 additions and 49 deletions

View File

@@ -15,6 +15,7 @@ import conversations from './modules/conversations';
import inboxes from './modules/inboxes';
import inboxMembers from './modules/inboxMembers';
import reports from './modules/reports';
import webhooks from './modules/webhooks';
Vue.use(Vuex);
export default new Vuex.Store({
@@ -33,5 +34,6 @@ export default new Vuex.Store({
inboxes,
inboxMembers,
reports,
webhooks,
},
});