mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 09:46:25 +08:00
22 lines
No EOL
347 B
JavaScript
22 lines
No EOL
347 B
JavaScript
"use strict";
|
|
|
|
function checkAuth(req, res, next) {
|
|
if (!req.session.loggedIn) {
|
|
res.redirect("login");
|
|
} else {
|
|
next();
|
|
}
|
|
}
|
|
|
|
function checkApiAuth(req, res, next) {
|
|
if (!req.session.loggedIn) {
|
|
res.sendStatus(401);
|
|
} else {
|
|
next();
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
checkAuth,
|
|
checkApiAuth
|
|
}; |