(req, res)
| 3 | module.exports = { |
| 4 | list: { |
| 5 | async get(req, res) { |
| 6 | let s = db('account').filter({ adminId: req.info.userInfo.id }).value() |
| 7 | res.return(s) |
| 8 | }, |
| 9 | async put(req, res) { |
| 10 | const cloud = new Cloud() |
| 11 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected