Refactor: withFile --> requireFile
This commit is contained in:
parent
ad5a7e9d70
commit
dbf335a05d
4 changed files with 4 additions and 4 deletions
|
@ -35,7 +35,7 @@ const router = new Router();
|
|||
/**
|
||||
* Register endpoint handlers
|
||||
*/
|
||||
endpoints.forEach(endpoint => endpoint.meta.withFile
|
||||
endpoints.forEach(endpoint => endpoint.meta.requireFile
|
||||
? router.post(`/${endpoint.name}`, upload.single('file'), handler.bind(null, endpoint))
|
||||
: router.post(`/${endpoint.name}`, handler.bind(null, endpoint))
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue