mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
b61a82627e
- able to download file from express
12 lines
308 B
JavaScript
12 lines
308 B
JavaScript
// Create controller for GET request to '/ontime/download'
|
|
// Returns -
|
|
export const eventsDownload = async (req, res) => {
|
|
res.download('db.json', 'ontime events.json', (err) => {
|
|
if (err) {
|
|
res.status(500).send({
|
|
message: 'Could not download the file. ' + err,
|
|
});
|
|
}
|
|
});
|
|
};
|