add follow requests UI

This commit is contained in:
William Pitcock 2018-06-07 00:58:44 +00:00
parent b8d0a6a0ba
commit f3a27764aa
7 changed files with 61 additions and 3 deletions

View file

@ -0,0 +1,12 @@
<template>
<div class="settings panel panel-default">
<div class="panel-heading">
{{$t('nav.friend_requests')}}
</div>
<div class="panel-body">
<user-card v-for="request in requests" :key="request.id" :user="request" :showFollows="false" :showApproval="true"></user-card>
</div>
</div>
</template>
<script src="./follow_requests.js"></script>