agent starting :D

This commit is contained in:
2026-03-01 14:10:19 -06:00
parent c3379919b9
commit 68d13b03d3
34 changed files with 1905 additions and 254 deletions

View File

@@ -14,3 +14,7 @@ settings {
encodeUrl: true
timeout: 0
}
docs {
returns all settings
}

View File

@@ -5,15 +5,15 @@ meta {
}
patch {
url: {{url}}/lst/api/settings/something
url: {{url}}/lst/api/settings/opendock_sync
body: json
auth: inherit
}
body:json {
{
"value" : "true",
"active": "false"
"value" : "0",
"active": "true"
}
}
@@ -21,3 +21,13 @@ settings {
encodeUrl: true
timeout: 0
}
docs {
Allows the changing of a setting based on the parameter.
* when a setting that is being changed is a feature there will be some backgound logic that will stop that features processes and no long work.
* when the setting is being changed is system the entire app will do a full restart
* when a seeting is being changed and is standard nothing will happen until the next action is completed. example someone prints a label and you changed the default to 120 second from 90 seconds
}