Update plugins/alldownloader.js
Browse files- plugins/alldownloader.js +3 -3
plugins/alldownloader.js
CHANGED
@@ -59,13 +59,13 @@ async function downloadMedia(media) {
|
|
59 |
|
60 |
/**
|
61 |
* @swagger
|
62 |
-
* /api/v1/custom/
|
63 |
* get:
|
64 |
* summary: Custom api endpoint all
|
65 |
* tags: [ALL-Endpoint]
|
66 |
* parameters:
|
67 |
* - in: query
|
68 |
-
* name:
|
69 |
* required: true
|
70 |
* description: null
|
71 |
* schema:
|
@@ -96,7 +96,7 @@ async function downloadMedia(media) {
|
|
96 |
*/
|
97 |
AllDlRoutes.get('/api/v1/custom/endpoint', apiLimiter, async (req, res) => {
|
98 |
try {
|
99 |
-
const e = req.query.
|
100 |
const params = req.query.params;
|
101 |
const search = req.query.search;
|
102 |
|
|
|
59 |
|
60 |
/**
|
61 |
* @swagger
|
62 |
+
* /api/v1/custom/endpoints:
|
63 |
* get:
|
64 |
* summary: Custom api endpoint all
|
65 |
* tags: [ALL-Endpoint]
|
66 |
* parameters:
|
67 |
* - in: query
|
68 |
+
* name: endpoints
|
69 |
* required: true
|
70 |
* description: null
|
71 |
* schema:
|
|
|
96 |
*/
|
97 |
AllDlRoutes.get('/api/v1/custom/endpoint', apiLimiter, async (req, res) => {
|
98 |
try {
|
99 |
+
const e = req.query.endpoints;
|
100 |
const params = req.query.params;
|
101 |
const search = req.query.search;
|
102 |
|