immersive-home/app/lib/stores/settings.gd
2024-04-09 17:11:24 +02:00

25 lines
603 B
GDScript

extends StoreClass
## Stores general settings for the app
const StoreClass = preload ("./store.gd")
func _init():
_save_path = "user://settings.json"
self.state = R.store({
## The adapter to use for connecting with a backend
"type": "HASS_WS",
"url": "",
"token": "",
## If the voice assistant should be enabled
"voice_assistant": false,
## If the onboarding process has been completed
"onboarding_complete": false
})
func clear():
self.state.type = "HASS_WS"
self.state.url = ""
self.state.token = ""
self.state.voice_assistant = false
self.state.onboarding_complete = false