Merge pull request #1860 from fomojola/patch-1

[web] Add missing fields to configuration store
This commit is contained in:
Alain Nussbaumer 2025-02-16 10:39:57 +01:00 committed by GitHub
commit 3d27b1c25a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,8 @@ export const useConfigurationStore = defineStore('ConfigurationStore', {
state: () => ({
buildoptions: [],
version: '',
websocket_port: 0
websocket_port: 0,
allow_modifying_stored_playlists: false,
default_playlist_directory: ''
})
})