1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-20 16:11:33 +02:00
send/server/routes/delete.js
2018-02-09 15:03:05 -08:00

11 lines
203 B
JavaScript

const storage = require('../storage');
module.exports = async function(req, res) {
try {
await storage.del(req.params.id);
res.sendStatus(200);
} catch (e) {
res.sendStatus(404);
}
};