aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_status/src/store/index.js
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-02-24 16:38:32 +0100
committerMaksim Sukharev <antreesy.web@gmail.com>2023-04-18 14:57:44 +0200
commit64776ff042d880eac5d702d3cbc7af4fb0834be2 (patch)
tree5872ca565b5365a8c006169ffb8f621ddfdf723f /apps/user_status/src/store/index.js
parent1a255379e85f02f3fb301f709720f3210f56b011 (diff)
downloadnextcloud-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.js2
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,
})