summaryrefslogtreecommitdiffstats
path: root/src/mixins/follow.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/mixins/follow.js')
-rw-r--r--src/mixins/follow.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mixins/follow.js b/src/mixins/follow.js
index 608011fe..8b74ec82 100644
--- a/src/mixins/follow.js
+++ b/src/mixins/follow.js
@@ -21,6 +21,7 @@
*/
import axios from '@nextcloud/axios'
+import { generateUrl } from '@nextcloud/router'
class FollowException {
@@ -39,7 +40,7 @@ export default {
methods: {
follow() {
this.followLoading = true
- return axios.put(OC.generateUrl('/apps/social/api/v1/current/follow?account=' + this.item.account)).then((response) => {
+ return axios.put(generateUrl('/apps/social/api/v1/current/follow?account=' + this.item.account)).then((response) => {
this.followLoading = false
if (response.data.status === -1) {
throw new FollowException()
@@ -54,7 +55,7 @@ export default {
},
unfollow() {
this.followLoading = true
- return axios.delete(OC.generateUrl('/apps/social/api/v1/current/follow?account=' + this.item.account)).then((response) => {
+ return axios.delete(generateUrl('/apps/social/api/v1/current/follow?account=' + this.item.account)).then((response) => {
this.followLoading = false
if (response.data.status === -1) {
throw new UnfollowException()