feat: SLA reports store (#9185)

- Added sla reports actions, getters and mutations.
This commit is contained in:
Muhsin Keloth
2024-04-03 12:53:31 +05:30
committed by GitHub
parent fc25f43448
commit 727fa67735
9 changed files with 457 additions and 0 deletions

View File

@@ -44,6 +44,7 @@ import teams from './modules/teams';
import userNotificationSettings from './modules/userNotificationSettings';
import webhooks from './modules/webhooks';
import draftMessages from './modules/draftMessages';
import SLAReports from './modules/SLAReports';
import LogRocket from 'logrocket';
import createPlugin from 'logrocket-vuex';
@@ -111,6 +112,7 @@ export default new Vuex.Store({
webhooks,
draftMessages,
sla,
slaReports: SLAReports,
},
plugins,
});