mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 06:49:16 +02:00
Fix #109: List pending requests by default, added a status filter for requests
This commit is contained in:
parent
f2d20e1bf7
commit
42a2ffbf24
6 changed files with 44 additions and 7 deletions
|
@ -6,7 +6,11 @@
|
|||
<router-link class="ui item" to="/library/radios" exact><i18next path="Radios"/></router-link>
|
||||
<router-link class="ui item" to="/library/playlists" exact><i18next path="Playlists"/></router-link>
|
||||
<div class="ui secondary right menu">
|
||||
<router-link v-if="$store.state.auth.authenticated" class="ui item" to="/library/requests/" exact>
|
||||
<router-link
|
||||
v-if="$store.state.auth.authenticated"
|
||||
class="ui item"
|
||||
:to="{name: 'library.requests', query: {status: 'pending' }}"
|
||||
exact>
|
||||
<i18next path="Requests"/>
|
||||
<div class="ui teal label">{{ requestsCount }}</div>
|
||||
</router-link>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue