diff options
| author | Pitu <[email protected]> | 2019-09-30 07:24:37 +0000 |
|---|---|---|
| committer | Pitu <[email protected]> | 2019-09-30 07:24:37 +0000 |
| commit | 4db167ec43806e20cc40932a292efc2909e69328 (patch) | |
| tree | 0bcf368689d98f867053237f85462408e73aab1a /src/api/routes/albums/link | |
| parent | feature: tags logic (diff) | |
| download | host.fuwn.me-4db167ec43806e20cc40932a292efc2909e69328.tar.xz host.fuwn.me-4db167ec43806e20cc40932a292efc2909e69328.zip | |
Fix deletion of albums and links
Diffstat (limited to 'src/api/routes/albums/link')
| -rw-r--r-- | src/api/routes/albums/link/linkDELETE.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/api/routes/albums/link/linkDELETE.js b/src/api/routes/albums/link/linkDELETE.js index 3ec4d9d..7adcaac 100644 --- a/src/api/routes/albums/link/linkDELETE.js +++ b/src/api/routes/albums/link/linkDELETE.js @@ -7,10 +7,6 @@ class linkDELETE extends Route { } async run(req, res, db) { - console.log('------------------------------'); - console.log('YES HI'); - console.log('------------------------------'); - console.log('WHO NEEDS FANCY DEBUGGING TOOLS ANYWAYS'); const { identifier } = req.params; if (!identifier) return res.status(400).json({ message: 'Invalid identifier supplied' }); |