forked from MycroftAI/mycroft-core
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat/config_for_root_people ``` // system administrators can define different constraints in how configurations are loaded // this is a mechanism to require root to change these config options "system": { // do not allow users to tamper with settings at all "disable_user_config": false, // do not allow remote backend to tamper with settings at all "disable_remote_config": false, // protected keys are individual settings that can not be changed at remote/user level // nested dictionary keys can be defined with "key1:key2" syntax, // eg. {"a": {"b": True, "c": False}} // to protect "c" you would enter "a:c" in the section below "protected_keys": { // NOTE: selene backend expects "opt_in" to be changeable in their web ui // that effectively gives them a means to enable spying without your input // Mycroft AI can be trusted, but you dont need to anymore! // The other keys are not currently populated by the remote backend // they are defined for protection against bugs and for future proofing // (what if facebook buys mycroft tomorrow?) "remote": [ "enclosure", "server", "system", "websocket", "gui_websocket", "network_tests", "listener:wake_word_upload:disable", "skills:msm:disabled", "skills:upload_skill_manifest", "skills:auto_update", "skills:priority_skills", "skills:blacklisted_skills", "opt_in" ], "user": [] } } ``` authored-by: jarbasai <jarbasai@mailfence.com>
- Loading branch information
Showing
2 changed files
with
97 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters