Remove debug code

This commit is contained in:
Jan Oberhauser
2020-09-18 09:57:38 +02:00
parent 43396b7b9c
commit 28d5f22f61
4 changed files with 0 additions and 6 deletions

View File

@@ -115,7 +115,6 @@ export class Wordpress implements INodeType {
async getAuthors(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
const authors = await wordpressApiRequestAllItems.call(this, 'GET', '/users', {}, { who: 'authors' });
console.log(authors);
for (const author of authors) {
const authorName = author.name;
const authorId = author.id;