mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 09:13:23 +03:00
8 lines
171 B
JavaScript
Executable File
8 lines
171 B
JavaScript
Executable File
module.exports = async function isAuthenticated(req, res, proceed) {
|
|
if (!req.currentUser.isAdmin) {
|
|
return res.notFound(); // Forbidden
|
|
}
|
|
|
|
return proceed();
|
|
};
|