mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-08-03 16:40:57 -05:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
const common = require("../helpers/common");
|
|
|
|
function adminUserAuthenticationMiddleware(req, res, next) {
|
|
if (req.isAuthenticated()) {
|
|
return next()
|
|
}
|
|
|
|
common.sendApiAuthError(req, res);
|
|
}
|
|
|
|
module.exports = adminUserAuthenticationMiddleware; |