Browse Source

fix: update file upload with correct field name

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5444/head
Pranav C 1 year ago
parent
commit
e36a486e07
  1. 1
      packages/nocodb-nest/src/filters/global-exception/global-exception.filter.ts
  2. 2
      packages/nocodb-nest/src/modules/attachments/attachments.controller.ts

1
packages/nocodb-nest/src/filters/global-exception/global-exception.filter.ts

@ -51,6 +51,7 @@ export class GlobalExceptionFilter implements ExceptionFilter {
if (exception.getStatus?.()) {
response.status(exception.getStatus()).json(exception.getResponse());
} else {
// todo: change the response code
response.status(400).json({
msg: exception.message,
});

2
packages/nocodb-nest/src/modules/attachments/attachments.controller.ts

@ -47,7 +47,7 @@ export class AttachmentsController {
@HttpCode(200)
@UseInterceptors(
UploadAllowedInterceptor,
FilesInterceptor('files[]', null, {
FilesInterceptor('files', null, {
storage: multer.diskStorage({}),
// limits: {
// fieldSize: NC_ATTACHMENT_FIELD_SIZE,

Loading…
Cancel
Save