aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/store/actionsmenu.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/src/store/actionsmenu.ts')
-rw-r--r--apps/files/src/store/actionsmenu.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/files/src/store/actionsmenu.ts b/apps/files/src/store/actionsmenu.ts
new file mode 100644
index 00000000000..dc5ce8cb8b3
--- /dev/null
+++ b/apps/files/src/store/actionsmenu.ts
@@ -0,0 +1,12 @@
+/**
+ * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+import { defineStore } from 'pinia'
+import type { ActionsMenuStore } from '../types'
+
+export const useActionsMenuStore = defineStore('actionsmenu', {
+ state: () => ({
+ opened: null,
+ } as ActionsMenuStore),
+})