mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -73,10 +73,8 @@ export async function ghostApiRequestAllItems(this: IHookFunctions | IExecuteFun
|
|||||||
query.limit = 50;
|
query.limit = 50;
|
||||||
query.page = 1;
|
query.page = 1;
|
||||||
|
|
||||||
let uri: string | undefined;
|
|
||||||
|
|
||||||
do {
|
do {
|
||||||
responseData = await ghostApiRequest.call(this, method, endpoint, body, query, uri);
|
responseData = await ghostApiRequest.call(this, method, endpoint, body, query);
|
||||||
query.page = responseData.meta.pagination.next;
|
query.page = responseData.meta.pagination.next;
|
||||||
returnData.push.apply(returnData, responseData[propertyName]);
|
returnData.push.apply(returnData, responseData[propertyName]);
|
||||||
} while (
|
} while (
|
||||||
|
|||||||
Reference in New Issue
Block a user