(req, res, next)
| 2 | import url from 'url' |
| 3 | |
| 4 | export default function handler (req, res, next) { |
| 5 | linkServiceEndpoint(req, res) |
| 6 | linkAuthProvider(req, res) |
| 7 | linkAcceptEndpoint(res) |
| 8 | |
| 9 | res.status(204) |
| 10 | |
| 11 | next() |
| 12 | } |
| 13 | |
| 14 | function linkAuthProvider (req, res) { |
| 15 | const locals = req.app.locals |
nothing calls this directly
no test coverage detected