Update plugins/trendings.js
Browse files- plugins/trendings.js +1 -1
plugins/trendings.js
CHANGED
@@ -123,7 +123,7 @@ TrendingNewRoutes.get("/api/v1/trending/combo", authenticateApiKey, apiLimiter,
|
|
123 |
* 200:
|
124 |
* description: Success
|
125 |
*/
|
126 |
-
TrendingNewRoutes.get("/api/v1/trending/combo", authenticateApiKey, apiLimiter, async (req, res) => {
|
127 |
const limit = req.query.limit;
|
128 |
if (!limit) {
|
129 |
return res.status(400).json({ error: "Invalid or missing username" });
|
|
|
123 |
* 200:
|
124 |
* description: Success
|
125 |
*/
|
126 |
+
TrendingNewRoutes.get("/api/v1/trending/combo-recent", authenticateApiKey, apiLimiter, async (req, res) => {
|
127 |
const limit = req.query.limit;
|
128 |
if (!limit) {
|
129 |
return res.status(400).json({ error: "Invalid or missing username" });
|