Add support to podcast type

This commit is contained in:
mfcar
2023-02-22 18:22:52 +00:00
parent 8c84640484
commit b1ee54522a
16 changed files with 77 additions and 22 deletions

View File

@@ -37,6 +37,15 @@ export const state = () => ({
value: 'yyyy-MM-dd'
}
],
podcastTypes: [
{ text: 'Episodic', value: 'episodic' },
{ text: 'Serial', value: 'serial' }
],
episodeTypes: [
{ text: 'Full', value: 'full' },
{ text: 'Trailer', value: 'trailer' },
{ text: 'Bonus', value: 'bonus' }
],
libraryIcons: ['database', 'audiobookshelf', 'books-1', 'books-2', 'book-1', 'microphone-1', 'microphone-3', 'radio', 'podcast', 'rss', 'headphones', 'music', 'file-picture', 'rocket', 'power', 'star', 'heart']
})
@@ -169,4 +178,4 @@ export const mutations = {
state.selectedMediaItems.push(item)
}
}
}
}