(options)
| 11 | module.exports = { |
| 12 | |
| 13 | post (options) { |
| 14 | if (options == null) { options = {} } |
| 15 | return fetchJson('/db/o-auth', _.assign({}, { |
| 16 | method: 'POST', |
| 17 | json: options |
| 18 | })) |
| 19 | }, |
| 20 | |
| 21 | editProvider (provider, options) { |
| 22 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected