Skip to content

Commit

Permalink
Aggiunto widget per commenti e allegati
Browse files Browse the repository at this point in the history
- aggiunto widget per permettere di caricare commenti e allegati
- aggiunta dipendenza `multer` alla backend per poter gestire le richieste
multipart/form-data per il caricamento di file
  • Loading branch information
Fran314 committed Aug 10, 2023
1 parent 0bc6c4e commit 55e314d
Show file tree
Hide file tree
Showing 6 changed files with 387 additions and 1 deletion.
2 changes: 2 additions & 0 deletions api/controllers/AttachmentController.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ const AttachmentController = {
},

post: async req => {
console.log(req.files)
return
// TODO: il contenuto dell'allegato deve essere gestito all'interno
// di questo metodo, probabilmente utlizzando il middleware `multer`
// per express, modificando poi il body all'occorrenza
Expand Down
Loading

0 comments on commit 55e314d

Please sign in to comment.