(options)
| 38 | }, |
| 39 | |
| 40 | post (options) { |
| 41 | if (options == null) { options = {} } |
| 42 | return fetchJson('/db/api-clients', _.assign({}, { |
| 43 | method: 'POST', |
| 44 | json: options |
| 45 | })) |
| 46 | }, |
| 47 | |
| 48 | updateFeature ({ clientID, featureID }, options) { |
| 49 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected