bigly-chat/client/tou.js

11 lines
232 B
JavaScript
Raw Normal View History

2024-10-27 00:26:02 -04:00
import Route from "../route.js";
import auth from "../form/auth.js";
let main = new Route([auth], async function (req, res, input) {
2024-11-25 08:24:18 -05:00
res.render('guidelines', {
2024-10-30 20:37:20 -04:00
...input
2024-10-27 00:26:02 -04:00
});
2024-11-25 08:24:18 -05:00
return true;
2024-10-27 00:26:02 -04:00
});
export default main;