diff options
Diffstat (limited to 'apps/user_status/src/store/index.js')
-rw-r--r-- | apps/user_status/src/store/index.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/user_status/src/store/index.js b/apps/user_status/src/store/index.js new file mode 100644 index 00000000000..d9cfe674165 --- /dev/null +++ b/apps/user_status/src/store/index.js @@ -0,0 +1,21 @@ +/** + * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +import Vue from 'vue' +import Vuex, { Store } from 'vuex' +import predefinedStatuses from './predefinedStatuses.js' +import userStatus from './userStatus.js' +import userBackupStatus from './userBackupStatus.js' + +Vue.use(Vuex) + +export default new Store({ + modules: { + predefinedStatuses, + userStatus, + userBackupStatus, + }, + strict: true, +}) |