mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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
@@ -79,7 +79,7 @@ export class Coda implements INodeType {
|
||||
|
||||
methods = {
|
||||
loadOptions: {
|
||||
// Get all the available docs to display them to user so that he can
|
||||
// Get all the available docs to display them to user so that they can
|
||||
// select them easily
|
||||
async getDocs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -95,7 +95,7 @@ export class Coda implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available tables to display them to user so that he can
|
||||
// Get all the available tables to display them to user so that they can
|
||||
// select them easily
|
||||
async getTables(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -119,7 +119,7 @@ export class Coda implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available columns to display them to user so that he can
|
||||
// Get all the available columns to display them to user so that they can
|
||||
// select them easily
|
||||
async getColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -144,7 +144,7 @@ export class Coda implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available views to display them to user so that he can
|
||||
// Get all the available views to display them to user so that they can
|
||||
// select them easily
|
||||
async getViews(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -166,7 +166,7 @@ export class Coda implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available formulas to display them to user so that he can
|
||||
// Get all the available formulas to display them to user so that they can
|
||||
// select them easily
|
||||
async getFormulas(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -188,7 +188,7 @@ export class Coda implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available view rows to display them to user so that he can
|
||||
// Get all the available view rows to display them to user so that they can
|
||||
// select them easily
|
||||
async getViewRows(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -211,7 +211,7 @@ export class Coda implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the available view columns to display them to user so that he can
|
||||
// Get all the available view columns to display them to user so that they can
|
||||
// select them easily
|
||||
async getViewColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
|
||||
Reference in New Issue
Block a user