mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
docs: Stop assuming the user's gender in code comments (no-changelog) (#6015)
This commit is contained in:
committed by
GitHub
parent
9817a15da4
commit
c87262a312
@@ -221,7 +221,7 @@ export class ClickUp implements INodeType {
|
||||
|
||||
methods = {
|
||||
loadOptions: {
|
||||
// Get all the available teams to display them to user so that he can
|
||||
// Get all the available teams to display them to user so that they can
|
||||
// select them easily
|
||||
async getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -236,7 +236,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available spaces to display them to user so that he can
|
||||
// Get all the available spaces to display them to user so that they can
|
||||
// select them easily
|
||||
async getSpaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const teamId = this.getCurrentNodeParameter('team') as string;
|
||||
@@ -252,7 +252,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available folders to display them to user so that he can
|
||||
// Get all the available folders to display them to user so that they can
|
||||
// select them easily
|
||||
async getFolders(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const spaceId = this.getCurrentNodeParameter('space') as string;
|
||||
@@ -268,7 +268,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available lists to display them to user so that he can
|
||||
// Get all the available lists to display them to user so that they can
|
||||
// select them easily
|
||||
async getLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const folderId = this.getCurrentNodeParameter('folder') as string;
|
||||
@@ -284,7 +284,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available lists without a folder to display them to user so that he can
|
||||
// Get all the available lists without a folder to display them to user so that they can
|
||||
// select them easily
|
||||
async getFolderlessLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const spaceId = this.getCurrentNodeParameter('space') as string;
|
||||
@@ -300,7 +300,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available assignees to display them to user so that he can
|
||||
// Get all the available assignees to display them to user so that they can
|
||||
// select them easily
|
||||
async getAssignees(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const listId = this.getCurrentNodeParameter('list') as string;
|
||||
@@ -326,7 +326,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available tags to display them to user so that he can
|
||||
// Get all the available tags to display them to user so that they can
|
||||
// select them easily
|
||||
async getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const spaceId = this.getCurrentNodeParameter('space') as string;
|
||||
@@ -342,7 +342,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available tags to display them to user so that he can
|
||||
// Get all the available tags to display them to user so that they can
|
||||
// select them easily
|
||||
async getTimeEntryTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const teamId = this.getCurrentNodeParameter('team') as string;
|
||||
@@ -362,7 +362,7 @@ export class ClickUp implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available tags to display them to user so that he can
|
||||
// Get all the available tags to display them to user so that they can
|
||||
// select them easily
|
||||
async getStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const listId = this.getCurrentNodeParameter('list') as string;
|
||||
@@ -379,7 +379,7 @@ export class ClickUp implements INodeType {
|
||||
return returnData;
|
||||
},
|
||||
|
||||
// Get all the custom fields to display them to user so that he can
|
||||
// Get all the custom fields to display them to user so that they can
|
||||
// select them easily
|
||||
async getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const listId = this.getCurrentNodeParameter('list') as string;
|
||||
@@ -396,7 +396,7 @@ export class ClickUp implements INodeType {
|
||||
return returnData;
|
||||
},
|
||||
|
||||
// Get all the available lists to display them to user so that he can
|
||||
// Get all the available lists to display them to user so that they can
|
||||
// select them easily
|
||||
async getTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const listId = this.getCurrentNodeParameter('list') as string;
|
||||
|
||||
Reference in New Issue
Block a user