mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 21:59:00 +02:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
18 lines
338 B
JavaScript
18 lines
338 B
JavaScript
const {
|
|
acceptsJson,
|
|
} = require('../../infrastructure/RequestContentTypeDetection')
|
|
|
|
module.exports = {
|
|
redirect,
|
|
}
|
|
|
|
// redirect the request via headers or JSON response depending on the request
|
|
// format
|
|
function redirect(req, res, redir) {
|
|
if (acceptsJson(req)) {
|
|
res.json({ redir })
|
|
} else {
|
|
res.redirect(redir)
|
|
}
|
|
}
|