({ clientID, featureID }, options)
| 46 | }, |
| 47 | |
| 48 | updateFeature ({ clientID, featureID }, options) { |
| 49 | if (options == null) { options = {} } |
| 50 | return fetchJson(`/db/api-clients/${clientID}/update-feature/${featureID}`, _.assign({}, { |
| 51 | method: 'PUT', |
| 52 | json: options |
| 53 | })) |
| 54 | }, |
| 55 | |
| 56 | getByHandle (clientID, options) { |
| 57 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected