removing unused code
This commit is contained in:
parent
aa8c1afa9d
commit
6ee2df5adc
2 changed files with 0 additions and 45 deletions
|
@ -50,24 +50,6 @@ app.get('/exists/:id', (req, res) => {
|
|||
}).catch(err => res.sendStatus(404));
|
||||
});
|
||||
|
||||
app.get('/file/:id', (req, res) => {
|
||||
let id = req.params.id;
|
||||
storage.filename(id).then(filename => {
|
||||
storage
|
||||
.length(id)
|
||||
.then(contentLength => {
|
||||
res.json({
|
||||
name: filename,
|
||||
filesize: bytes(contentLength),
|
||||
fileId: id
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
console.log('error retrieving id ' + id);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
app.get('/download/:id', (req, res) => {
|
||||
const id = req.params.id;
|
||||
storage.filename(id).then(filename => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue