(provider, options)
| 19 | }, |
| 20 | |
| 21 | editProvider (provider, options) { |
| 22 | if (options == null) { options = {} } |
| 23 | return fetchJson('/db/o-auth', _.assign({}, options, { |
| 24 | method: 'PUT', |
| 25 | json: provider |
| 26 | })) |
| 27 | }, |
| 28 | |
| 29 | getByName (providerName, options) { |
| 30 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected