revert it for now
This commit is contained in:
parent
450c92f3e7
commit
8fdd3e09c6
|
@ -55,10 +55,6 @@ app.use(
|
|||
}),
|
||||
);
|
||||
|
||||
app.use(
|
||||
upload.any()
|
||||
);
|
||||
|
||||
// Init router
|
||||
const router = new Router();
|
||||
|
||||
|
@ -71,6 +67,7 @@ for (const endpoint of [...endpoints, ...compatibility]) {
|
|||
if (endpoint.meta.requireFile) {
|
||||
router.post(
|
||||
`/${endpoint.name}`,
|
||||
upload.single("file"),
|
||||
handler.bind(null, endpoint),
|
||||
);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue