53e104dc32
#388: get follow request on a real-time basis Closes #388 See merge request pleroma/pleroma-fe!619
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
import FollowRequestCard from '../follow_request_card/follow_request_card.vue'
|
|
|
|
const FollowRequests = {
|
|
components: {
|
|
FollowRequestCard
|
|
},
|
|
computed: {
|
|
requests () {
|
|
return this.$store.state.api.followRequests
|
|
}
|
|
}
|
|
}
|
|
|
|
export default FollowRequests
|