///////////////////////////////////////////////////////////////////////////
| 38 | |
| 39 | //////////////////////////////////////////////////////////////////////////////// |
| 40 | CmdConfig::CmdConfig() { |
| 41 | _keyword = "config"; |
| 42 | _usage = "task config [name [value | '']]"; |
| 43 | _description = "Change settings in the task configuration"; |
| 44 | _read_only = true; |
| 45 | _displays_id = false; |
| 46 | _needs_gc = false; |
| 47 | _needs_recur_update = false; |
| 48 | _uses_context = false; |
| 49 | _accepts_filter = false; |
| 50 | _accepts_modifications = false; |
| 51 | _accepts_miscellaneous = true; |
| 52 | _category = Command::Category::config; |
| 53 | } |
| 54 | |
| 55 | //////////////////////////////////////////////////////////////////////////////// |
| 56 | bool CmdConfig::setConfigVariable(const std::string& name, const std::string& value, |
nothing calls this directly
no outgoing calls
no test coverage detected