added server styling settings

This commit is contained in:
zipben 2025-06-05 10:34:06 +00:00
parent 76ea038f5a
commit 32ab726fe9
11 changed files with 466 additions and 3 deletions

View file

@ -36,6 +36,10 @@ export const getters = {
if (!state.serverSettings) return null
return state.serverSettings[key]
},
getServerStyling: (state) => {
if (!state.serverSettings?.styling) return null
return state.serverSettings.styling
},
getLibraryItemIdStreaming: (state) => {
return state.streamLibraryItem?.id || null
},