aboutsummaryrefslogtreecommitdiff
path: root/src/components/follow_requests/follow_requests.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/follow_requests/follow_requests.js')
-rw-r--r--src/components/follow_requests/follow_requests.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/components/follow_requests/follow_requests.js b/src/components/follow_requests/follow_requests.js
index d57dcbc7..704a76c6 100644
--- a/src/components/follow_requests/follow_requests.js
+++ b/src/components/follow_requests/follow_requests.js
@@ -4,19 +4,10 @@ const FollowRequests = {
components: {
FollowRequestCard
},
- created () {
- this.updateRequests()
- },
computed: {
requests () {
return this.$store.state.api.followRequests
}
- },
- methods: {
- updateRequests () {
- this.$store.state.api.backendInteractor.fetchFollowRequests()
- .then((requests) => { this.$store.commit('setFollowRequests', requests) })
- }
}
}