Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2022-04-20 17:21:12 +0300
committermarco <marcoambrosini@pm.me>2022-04-25 11:03:18 +0300
commit258621d488b01ecddd362ce8ae6772905259272f (patch)
tree10129e85285a30762f592e2f23a91fc94bc1090f
parent8c74a589ddacd1b497c2e50e8c4b227c5dc53307 (diff)
Rename sharedItems service and store
Signed-off-by: marco <marcoambrosini@pm.me>
-rw-r--r--src/services/sharedItemsService.js (renamed from src/services/conversationSharedItemsService.js)0
-rw-r--r--src/store/sharedItemsStore.js (renamed from src/store/conversationSharedItemsStore.js)2
-rw-r--r--src/store/storeConfig.js4
3 files changed, 3 insertions, 3 deletions
diff --git a/src/services/conversationSharedItemsService.js b/src/services/sharedItemsService.js
index a0537ecf9..a0537ecf9 100644
--- a/src/services/conversationSharedItemsService.js
+++ b/src/services/sharedItemsService.js
diff --git a/src/store/conversationSharedItemsStore.js b/src/store/sharedItemsStore.js
index 9242dd0c8..a87b68676 100644
--- a/src/store/conversationSharedItemsStore.js
+++ b/src/store/sharedItemsStore.js
@@ -21,7 +21,7 @@
*/
import Vue from 'vue'
-import { getSharedItemsOverview, getSharedItems } from '../services/conversationSharedItemsService'
+import { getSharedItemsOverview, getSharedItems } from '../services/sharedItemsService'
import { SHARED_ITEM } from '../constants'
const getItemTypeFromMessage = function(message) {
diff --git a/src/store/storeConfig.js b/src/store/storeConfig.js
index 9f5fbe9c1..121f3cdcf 100644
--- a/src/store/storeConfig.js
+++ b/src/store/storeConfig.js
@@ -39,7 +39,7 @@ import uiModeStore from './uiModeStore'
import windowVisibilityStore from './windowVisibilityStore'
import messageActionsStore from './messageActionsStore'
import reactionsStore from './reactionsStore'
-import conversationSharedItemStore from './conversationSharedItemsStore'
+import sharedItemStore from './sharedItemsStore'
export default {
modules: {
@@ -62,7 +62,7 @@ export default {
windowVisibilityStore,
messageActionsStore,
reactionsStore,
- conversationSharedItemStore,
+ sharedItemStore,
},
mutations: {},