(options)
| 10 | |
| 11 | module.exports = { |
| 12 | clearFeatureMode (options) { |
| 13 | return fetchJson('/admin/feature-mode', _.assign({}, options, { method: 'DELETE' })) |
| 14 | }, |
| 15 | |
| 16 | setFeatureMode (featureMode, options) { |
| 17 | return fetchJson(`/admin/feature-mode/${featureMode}`, _.assign({}, options, { method: 'PUT' })) |
nothing calls this directly
no outgoing calls
no test coverage detected