diff options
author | Joas Schilling <coding@schilljs.com> | 2023-02-24 16:38:32 +0100 |
---|---|---|
committer | Maksim Sukharev <antreesy.web@gmail.com> | 2023-04-18 14:57:44 +0200 |
commit | 64776ff042d880eac5d702d3cbc7af4fb0834be2 (patch) | |
tree | 5872ca565b5365a8c006169ffb8f621ddfdf723f /apps/user_status/src/store/index.js | |
parent | 1a255379e85f02f3fb301f709720f3210f56b011 (diff) | |
download | nextcloud-server-64776ff042d880eac5d702d3cbc7af4fb0834be2.tar.gz nextcloud-server-64776ff042d880eac5d702d3cbc7af4fb0834be2.zip |
feat(user_status): Allow to manually revert an automated status
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/user_status/src/store/index.js')
-rw-r--r-- | apps/user_status/src/store/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/user_status/src/store/index.js b/apps/user_status/src/store/index.js index caf4eb5f072..386967fe638 100644 --- a/apps/user_status/src/store/index.js +++ b/apps/user_status/src/store/index.js @@ -24,6 +24,7 @@ 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) @@ -31,6 +32,7 @@ export default new Store({ modules: { predefinedStatuses, userStatus, + userBackupStatus, }, strict: true, }) |