mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
|
const { Router } = require("express");
|
||
|
|
||
|
const app = Router();
|
||
|
|
||
|
app.get("/", (req, res, next) => {
|
||
|
if (!req.session.loggedin) return res.redirect('/login');
|
||
|
next();
|
||
|
});
|
||
|
|
||
|
module.exports = app;
|