({ clientID }, options)
| 18 | }, |
| 19 | |
| 20 | createAutoClanOwner ({ clientID }, options) { |
| 21 | if (options == null) { options = {} } |
| 22 | return fetchJson(`/db/api-clients/${clientID}/create-auto-clan-owner`, _.assign({}, { |
| 23 | method: 'POST', |
| 24 | json: options |
| 25 | })) |
| 26 | }, |
| 27 | |
| 28 | getByName (clientName, options) { |
| 29 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected