mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-08-05 10:35:42 +02:00
Add:Open/close RSS feed for library items
This commit is contained in:
parent
1ddb6eca00
commit
c8053355df
18 changed files with 1238 additions and 12 deletions
|
@ -38,7 +38,9 @@ export const state = () => ({
|
|||
showPlaylistsAddCreateModal: false,
|
||||
showSelectLocalFolderModal: false,
|
||||
localFolderSelectData: null,
|
||||
hapticFeedback: 'LIGHT'
|
||||
hapticFeedback: 'LIGHT',
|
||||
showRSSFeedOpenCloseModal: false,
|
||||
rssFeedEntity: null
|
||||
})
|
||||
|
||||
export const getters = {
|
||||
|
@ -192,5 +194,12 @@ export const mutations = {
|
|||
},
|
||||
setHapticFeedback(state, val) {
|
||||
state.hapticFeedback = val || 'LIGHT'
|
||||
},
|
||||
setShowRSSFeedOpenCloseModal(state, val) {
|
||||
state.showRSSFeedOpenCloseModal = val
|
||||
},
|
||||
setRSSFeedOpenCloseModal(state, entity) {
|
||||
state.rssFeedEntity = entity
|
||||
state.showRSSFeedOpenCloseModal = true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue