summaryrefslogtreecommitdiffstats
path: root/src/services/CommandsService.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/CommandsService.js')
-rw-r--r--src/services/CommandsService.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/services/CommandsService.js b/src/services/CommandsService.js
index cc5bdf2..181d50e 100644
--- a/src/services/CommandsService.js
+++ b/src/services/CommandsService.js
@@ -3,9 +3,9 @@ import ChatService from "./ChatService"
3import store from "@/store/index.js" 3import store from "@/store/index.js"
4import router from '@/router/index.js' 4import router from '@/router/index.js'
5 5
6function set_groups(data) { 6function set_groups(searcher, data) {
7 function group_command(group) { 7 function group_command(group) {
8 console.log(group) 8 searcher.$emit("group_set", group)
9 } 9 }
10 10
11 let groups = {} 11 let groups = {}
@@ -21,11 +21,11 @@ function set_groups(data) {
21export default { 21export default {
22 groups() { 22 groups() {
23 return { 23 return {
24 async send() { 24 async send(searcher) {
25 const {data, status} = await ChatService.get_all_user_groups() 25 const {data, status} = await ChatService.get_all_user_groups()
26 if (status!==200) 26 if (status!==200)
27 return {} 27 return {}
28 const groups = set_groups(data) 28 const groups = set_groups(searcher, data)
29 return groups 29 return groups
30 }, 30 },
31 31