bigly-chat/client/player.js

18 lines
427 B
JavaScript
Raw Normal View History

2024-11-25 14:12:43 -05:00
import Route from "../route.js";
2024-11-25 14:12:43 -05:00
import comment from "./comment.js";
2024-11-25 14:12:43 -05:00
import initDb from "../db.js";
let db = await initDb();
2024-11-25 14:12:43 -05:00
let main = new Route([comment], async function (req, res, input) {
2024-11-25 14:12:43 -05:00
let videoData = await db.all('SELECT * FROM video WHERE id = ?', [
req.query.id
]);
videoData = videoData[0];
return res.render('player', {
2024-11-25 14:12:43 -05:00
...input,
2024-11-25 14:12:43 -05:00
videoData
});
});
export default main;