mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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
@@ -68,7 +68,7 @@ export class Xero implements INodeType {
|
||||
|
||||
methods = {
|
||||
loadOptions: {
|
||||
// Get all the item codes to display them to user so that he can
|
||||
// Get all the item codes to display them to user so that they can
|
||||
// select them easily
|
||||
async getItemCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const organizationId = this.getCurrentNodeParameter('organizationId');
|
||||
@@ -86,7 +86,7 @@ export class Xero implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the account codes to display them to user so that he can
|
||||
// Get all the account codes to display them to user so that they can
|
||||
// select them easily
|
||||
async getAccountCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const organizationId = this.getCurrentNodeParameter('organizationId');
|
||||
@@ -104,7 +104,7 @@ export class Xero implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the tenants to display them to user so that he can
|
||||
// Get all the tenants to display them to user so that they can
|
||||
// select them easily
|
||||
async getTenants(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
@@ -126,7 +126,7 @@ export class Xero implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the brading themes to display them to user so that he can
|
||||
// Get all the brading themes to display them to user so that they can
|
||||
// select them easily
|
||||
async getBrandingThemes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const organizationId = this.getCurrentNodeParameter('organizationId');
|
||||
@@ -147,7 +147,7 @@ export class Xero implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the brading themes to display them to user so that he can
|
||||
// Get all the brading themes to display them to user so that they can
|
||||
// select them easily
|
||||
async getCurrencies(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const organizationId = this.getCurrentNodeParameter('organizationId');
|
||||
@@ -165,7 +165,7 @@ export class Xero implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// Get all the tracking categories to display them to user so that he can
|
||||
// Get all the tracking categories to display them to user so that they can
|
||||
// select them easily
|
||||
async getTrakingCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const organizationId = this.getCurrentNodeParameter('organizationId');
|
||||
@@ -186,7 +186,7 @@ export class Xero implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
// // Get all the tracking categories to display them to user so that he can
|
||||
// // Get all the tracking categories to display them to user so that they can
|
||||
// // select them easily
|
||||
// async getTrakingOptions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
// const organizationId = this.getCurrentNodeParameter('organizationId');
|
||||
|
||||
Reference in New Issue
Block a user