({ operation, credits, endDate, userId })
| 21 | }) |
| 22 | |
| 23 | const addCredits = ({ operation, credits, endDate, userId }) => fetchJson('/db/user-credits/extra-credits', { |
| 24 | method: 'POST', |
| 25 | json: { |
| 26 | operation, |
| 27 | credits, |
| 28 | endDate, |
| 29 | userId |
| 30 | } |
| 31 | }) |
| 32 | |
| 33 | module.exports = { |
| 34 | getCredits, |
nothing calls this directly
no outgoing calls
no test coverage detected