mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-16 00:58:18 -04:00
13 lines
300 B
JavaScript
13 lines
300 B
JavaScript
import { defineStore } from 'pinia'
|
|
|
|
export const useConfigurationStore = defineStore('ConfigurationStore', {
|
|
state: () => ({
|
|
allow_modifying_stored_playlists: false,
|
|
buildoptions: [],
|
|
default_playlist_directory: '',
|
|
library_name: '',
|
|
version: '',
|
|
websocket_port: 0
|
|
})
|
|
})
|