blah
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 14s

This commit is contained in:
x
2025-07-22 16:27:18 +02:00
parent 99f8f623ba
commit a8503c299b
2 changed files with 22 additions and 0 deletions

12
src/inc/routes/upload.mjs Normal file
View File

@@ -0,0 +1,12 @@
export default (router, tpl) => {
router.get(/^\/upload$/, lib.auth, async (req, res) => {
res.reply({
body: tpl.render('upload', {
phrase,
tmp: null
}, req)
});
});
return router;
};