mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +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
@@ -80,7 +80,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
|
||||
methods = {
|
||||
loadOptions: {
|
||||
// Get all the team's channels to display them to user so that he can
|
||||
// Get all the team's channels to display them to user so that they can
|
||||
// select them easily
|
||||
async getChannels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -100,7 +100,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the teams to display them to user so that he can
|
||||
// Get all the teams to display them to user so that they can
|
||||
// select them easily
|
||||
async getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -115,7 +115,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the groups to display them to user so that he can
|
||||
// Get all the groups to display them to user so that they can
|
||||
// select them easily
|
||||
async getGroups(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -134,7 +134,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the plans to display them to user so that he can
|
||||
// Get all the plans to display them to user so that they can
|
||||
// select them easily
|
||||
async getPlans(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -157,7 +157,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the plans to display them to user so that he can
|
||||
// Get all the plans to display them to user so that they can
|
||||
// select them easily
|
||||
async getBuckets(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -180,7 +180,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the plans to display them to user so that he can
|
||||
// Get all the plans to display them to user so that they can
|
||||
// select them easily
|
||||
async getMembers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -203,7 +203,7 @@ export class MicrosoftTeams implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the labels to display them to user so that he can
|
||||
// Get all the labels to display them to user so that they can
|
||||
// select them easily
|
||||
async getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
|
||||
Reference in New Issue
Block a user