commit
97af70bb86
|
@ -82,7 +82,9 @@
|
|||
// Directory to look for user skills
|
||||
"directory": "~/.mycroft/skills",
|
||||
// TODO: Old unused kludge, remove from code
|
||||
"stop_threshold": 2.0
|
||||
"stop_threshold": 2.0,
|
||||
// blacklisted skills to not load
|
||||
"blacklisted_skills": ["skill-media", "send_sms"]
|
||||
},
|
||||
|
||||
// Address of the REMOTE server
|
||||
|
|
|
@ -36,7 +36,9 @@ from mycroft.util.log import getLogger
|
|||
from mycroft.skills.settings import SkillSettings
|
||||
__author__ = 'seanfitz'
|
||||
|
||||
BLACKLISTED_SKILLS = ["send_sms", "media"]
|
||||
skills_config = ConfigurationManager.instance().get("skills")
|
||||
BLACKLISTED_SKILLS = skills_config.get("blacklisted_skills", [])
|
||||
|
||||
SKILLS_DIR = "/opt/mycroft/skills"
|
||||
|
||||
MainModule = '__init__'
|
||||
|
|
Loading…
Reference in New Issue