akf-forum/routes/post/createThread.js
Akif Yüce eb197276db
V2.0.0
2022-03-13 16:06:25 +03:00

14 lines
No EOL
467 B
JavaScript

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);
}