* Configuration
(target_app, cb)
| 200 | * Configuration |
| 201 | */ |
| 202 | function displayConf(target_app, cb) { |
| 203 | if (typeof(target_app) == 'function') { |
| 204 | cb = target_app; |
| 205 | target_app = null; |
| 206 | } |
| 207 | |
| 208 | Configuration.getAll(function(err, data) { |
| 209 | UX.helpers.dispKeys(data, target_app); |
| 210 | return cb(); |
| 211 | }); |
| 212 | } |
no test coverage detected
searching dependent graphs…