mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-08 12:58:38 +02:00
Add:Open/close RSS feed for library items
This commit is contained in:
+10
-1
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user