({ clientID }, options)
| 10 | |
| 11 | module.exports = { |
| 12 | createSecret ({ clientID }, options) { |
| 13 | if (options == null) { options = {} } |
| 14 | return fetchJson(`/db/api-clients/${clientID}/new-secret`, _.assign({}, { |
| 15 | method: 'POST', |
| 16 | json: options |
| 17 | })) |
| 18 | }, |
| 19 | |
| 20 | createAutoClanOwner ({ clientID }, options) { |
| 21 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected