mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 07:19:15 +02:00
Shared playlist modal
This commit is contained in:
parent
f8b15a3f48
commit
0dfb594b6a
4 changed files with 68 additions and 46 deletions
|
@ -29,6 +29,8 @@
|
|||
v-if="$store.state.instance.settings.raven.front_enabled.value"
|
||||
:dsn="$store.state.instance.settings.raven.front_dsn.value">
|
||||
</raven>
|
||||
<playlist-modal v-if="$store.state.auth.authenticated"></playlist-modal>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -39,11 +41,14 @@ import logger from '@/logging'
|
|||
import Sidebar from '@/components/Sidebar'
|
||||
import Raven from '@/components/Raven'
|
||||
|
||||
import PlaylistModal from '@/components/playlists/PlaylistModal'
|
||||
|
||||
export default {
|
||||
name: 'app',
|
||||
components: {
|
||||
Sidebar,
|
||||
Raven
|
||||
Raven,
|
||||
PlaylistModal
|
||||
},
|
||||
created () {
|
||||
this.$store.dispatch('instance/fetchSettings')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue