2019-02-25 23:34:40 -05:00
|
|
|
import FollowRequestCard from '../follow_request_card/follow_request_card.vue'
|
2018-06-07 00:58:44 +00:00
|
|
|
|
|
|
|
|
const FollowRequests = {
|
|
|
|
|
components: {
|
2026-01-06 16:22:52 +02:00
|
|
|
FollowRequestCard,
|
2018-06-07 00:58:44 +00:00
|
|
|
},
|
2018-06-07 01:24:31 +00:00
|
|
|
computed: {
|
2026-01-06 16:22:52 +02:00
|
|
|
requests() {
|
2018-06-07 01:24:31 +00:00
|
|
|
return this.$store.state.api.followRequests
|
2026-01-06 16:22:52 +02:00
|
|
|
},
|
|
|
|
|
},
|
2018-06-07 00:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default FollowRequests
|