akf-forum/routes/post/createThread.js

14 lines
454 B
JavaScript
Raw Normal View History

2022-03-13 16:16:46 +03:00
const { User, Thread, Message } = require("../../classes/index");
module.exports = (req, res) => {
if (!req.session.loggedin) return res.redirect('/login');
const user = new User().getId(req.session.userid);
const info = req.body;
const thread = new Thread(info.title, user).takeId().write();
thread.push(new Message(info.content, user, thread).takeId().write().id)
thread.write();
res.redirect('/threads/' + thread.id);
2022-02-26 21:12:54 +03:00
}