summaryrefslogtreecommitdiffstats
path: root/src/components/Search.vue
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-12-02 18:13:31 +0100
committerJulius Härtl <jus@bitgrid.net>2018-12-03 07:15:15 +0100
commitbeea174e8232d98af1835f5e6705709042004a57 (patch)
tree817aeb7200b7330d77f6c2459eca05c4457920be /src/components/Search.vue
parentbf4575799708cddf9ff0dfdb7d7531db27c4cbd1 (diff)
Update account api urls
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/components/Search.vue')
-rw-r--r--src/components/Search.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Search.vue b/src/components/Search.vue
index be9165ff..2020b432 100644
--- a/src/components/Search.vue
+++ b/src/components/Search.vue
@@ -91,10 +91,10 @@ export default {
},
accountSearch(term) {
this.loading = true
- return axios.get(OC.generateUrl('apps/social/api/v1/accounts/search?search=' + term))
+ return axios.get(OC.generateUrl('apps/social/api/v1/global/accounts/search?search=' + term))
},
remoteSearch(term) {
- return axios.get(OC.generateUrl('apps/social/api/v1/account/info?account=' + term))
+ return axios.get(OC.generateUrl('apps/social/api/v1/global/account/info?account=' + term))
}
}
}