(input)
| 91 | return input.value === undefined |
| 92 | }, |
| 93 | toAutoClassifierInput(input) { |
| 94 | return input.value === undefined |
| 95 | ? input.setting |
| 96 | : `${input.setting} = ${input.value}` |
| 97 | }, |
| 98 | async checkPermissions(input: Input) { |
| 99 | // Auto-allow reading configs |
| 100 | if (input.value === undefined) { |
nothing calls this directly
no outgoing calls
no test coverage detected