feat: Add the ability to create custom attribute (#2903)

This commit is contained in:
Sivin Varghese
2021-08-31 13:54:34 +05:30
committed by GitHub
parent 75329e5de1
commit fdcc322660
12 changed files with 550 additions and 3 deletions

View File

@@ -30,6 +30,7 @@ import teamMembers from './modules/teamMembers';
import teams from './modules/teams';
import userNotificationSettings from './modules/userNotificationSettings';
import webhooks from './modules/webhooks';
import attributes from './modules/attributes';
Vue.use(Vuex);
export default new Vuex.Store({
@@ -63,5 +64,6 @@ export default new Vuex.Store({
teams,
userNotificationSettings,
webhooks,
attributes,
},
});