feat: Adding load-attachments endpoints

This commit is contained in:
2023-10-07 00:03:53 -06:00
parent e538e229f3
commit 964a94eec8
7 changed files with 88 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
'use strict';
const router = require('express').Router();
const services= require('./services.js');
router.get('/download/:id', services.getAttachmentFile );
module.exports = router;