(clientName, options)
| 26 | }, |
| 27 | |
| 28 | getByName (clientName, options) { |
| 29 | if (options == null) { options = {} } |
| 30 | if (options.data == null) { options.data = {} } |
| 31 | options.data.name = clientName |
| 32 | return fetchJson('/db/api-clients/name', options) |
| 33 | }, |
| 34 | |
| 35 | getAll (options) { |
| 36 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected