mirror of
https://github.com/zadam/trilium.git
synced 2024-12-26 17:21:23 +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
|
|
}; |