(err, _, res)
| 7 | import teamMemberApi from './team-member'; |
| 8 | |
| 9 | function handleError(err, _, res) { |
| 10 | logger.error(err.stack); |
| 11 | |
| 12 | res.json({ error: err.message || err.toString() }); |
| 13 | } |
| 14 | |
| 15 | async function verifySignature(signature) { |
| 16 | if (process.env.ENCRYPTION_KEY.length < 32) { |
nothing calls this directly
no outgoing calls
no test coverage detected