- Settings come from widgets config
{
"settings" : [
{
"id" : 1,
"Name" : "Degree Type",
"options" : ["C","F","K"] ,
"description" : "What degree type you would want displayed in your weather widget",
"default" : "F"
}
]
}
/web/settings/expanded
walks through layout and creates a list of things. Simple set of possible settings to start. true/false, array = options, etc...
- Settings are then saved in one layoutSettings keyvalue
{
"key" : "layout:settings",
"value" : [{
"fname" : "weather",
"settings" : [{"id" : 1, "v" : "F"}]
}]
}
Thanks!