edit playlist name added

This commit is contained in:
booploops 2021-12-22 16:09:36 -08:00
parent 17e24d4e4f
commit 153370c32d
3 changed files with 29 additions and 2 deletions

View file

@ -454,6 +454,7 @@ const app = new Vue({
})
},
async editPlaylist(id, name = "New Playlist") {
let self = this
await app.mk.api.library.editPlaylist(id, {name: name}).then(res => {
self.refreshPlaylists()
})