Jelajahi Sumber

We dont need the second one, probably

Pitu 6 tahun lalu
induk
melakukan
04cb6dcce5
1 mengubah file dengan 1 tambahan dan 17 penghapusan
  1. 1 17
      src/api/routes/albums/albumGET.js

+ 1 - 17
src/api/routes/albums/albumGET.js

@@ -33,20 +33,4 @@ class albumGET extends Route {
 	}
 }
 
-class albumsDropdownGET extends Route {
-	constructor() {
-		super('/albums/:identifier', 'get');
-	}
-
-	async run(req, res, user) {
-		const albums = await db.table('albums')
-			.where('userId', user.id)
-			.select('id', 'name');
-		return res.json({
-			message: 'Successfully retrieved albums',
-			albums
-		});
-	}
-}
-
-module.exports = [albumGET, albumsDropdownGET];
+module.exports = albumGET;