mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-24 20:54:43 +02:00
Add:Send ebook to device button #909
This commit is contained in:
parent
04e468b43d
commit
fc7af6d1fc
5 changed files with 58 additions and 4 deletions
|
@ -7,7 +7,8 @@ export const state = () => ({
|
|||
showModal: false,
|
||||
issues: 0,
|
||||
filterData: null,
|
||||
numUserPlaylists: 0
|
||||
numUserPlaylists: 0,
|
||||
ereaderDevices: []
|
||||
})
|
||||
|
||||
export const getters = {
|
||||
|
@ -177,5 +178,8 @@ export const mutations = {
|
|||
if (genre && !state.filterData.genres.includes(genre)) state.filterData.genres.push(genre)
|
||||
})
|
||||
}
|
||||
},
|
||||
setEReaderDevices(state, ereaderDevices) {
|
||||
state.ereaderDevices = ereaderDevices
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue