Desktop application configuration
name | data type | description |
---|---|---|
auto_update_url | string | Auto-update server URL. The is the location where the desktop application can check for newer versions and update itself. |
allow_cached_password | boolean | Whether or nor the desktop application should offer to cache or remember the user's password. |
max_file_size | number | The maximum file size that the desktop application should sync (upload or download). |
sync_interval | number | How often, in minutes, that the desktop application should check with the server for updated settings and modified files. |
process_config | DesktopAppProcessConfig | Configures which desktop processes can trigger on-demand file downloads. |
Example
{ "auto_update_url" : "...", "allow_cached_password" : true, "max_file_size" : 12345, "sync_interval" : 12345, "process_config" : { "allow_unlisted_processes" : true, "allow_unlisted_process_override" : true, "allowed_processes" : [ "...", "..." ], "blocked_processes" : [ "...", "..." ], "href" : "...", "links" : [ { "href" : "...", "rel" : "..." }, { "href" : "...", "rel" : "..." } ] } }