(client, options)
| 59 | }, |
| 60 | |
| 61 | editClient (client, options) { |
| 62 | if (options == null) { options = {} } |
| 63 | return fetchJson('/db/api-clients', _.assign({}, options, { |
| 64 | method: 'PUT', |
| 65 | json: client |
| 66 | })) |
| 67 | }, |
| 68 | |
| 69 | getLicenseStats (clientID, param, options) { |
| 70 | if (param == null) { param = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected