({ lowUsageUserId, action }, options = {})
| 5 | return fetchJson('/db/low-usage-users?withPrepaids=true') |
| 6 | }, |
| 7 | addAction ({ lowUsageUserId, action }, options = {}) { |
| 8 | return fetchJson(`/db/low-usage-users/${lowUsageUserId}/action`, _.assign({}, options, { |
| 9 | method: 'POST', |
| 10 | json: { action } |
| 11 | })) |
| 12 | } |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected