mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -132,8 +132,8 @@ export const userFields = [
|
||||
},
|
||||
default: 1,
|
||||
description: 'The page number to use in pagination..',
|
||||
}
|
||||
]
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -247,21 +247,21 @@ export const userFields = [
|
||||
name: 'can_create_projects',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user can create projects. Only applicable to Project Managers.'
|
||||
description: 'Whether the user can create projects. Only applicable to Project Managers.',
|
||||
},
|
||||
{
|
||||
displayName: 'Can Create Invoices',
|
||||
name: 'can_create_invoices',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user can create invoices. Only applicable to Project Managers.'
|
||||
description: 'Whether the user can create invoices. Only applicable to Project Managers.',
|
||||
},
|
||||
{
|
||||
displayName: 'Can See Rates',
|
||||
name: 'can_see_rates',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user can see billable rates on projects. Only applicable to Project Managers.'
|
||||
description: 'Whether the user can see billable rates on projects. Only applicable to Project Managers.',
|
||||
},
|
||||
{
|
||||
displayName: 'Cost Rate',
|
||||
@@ -271,63 +271,63 @@ export const userFields = [
|
||||
minValue: 0,
|
||||
},
|
||||
default: 0,
|
||||
description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount.'
|
||||
description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount.',
|
||||
},
|
||||
{
|
||||
displayName: 'Default Hourly Rate',
|
||||
name: 'default_hourly_rate',
|
||||
type: 'string',
|
||||
default: '0',
|
||||
description: 'The billable rate to use for this user when they are added to a project.'
|
||||
description: 'The billable rate to use for this user when they are added to a project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Has Access To All Future Projects',
|
||||
name: 'has_access_to_all_future_projects',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user should be automatically added to future projects.'
|
||||
description: 'Whether the user should be automatically added to future projects.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Active',
|
||||
name: 'is_active',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Whether the user is active or archived.'
|
||||
description: 'Whether the user is active or archived.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Admin',
|
||||
name: 'is_admin',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user has Admin permissions.'
|
||||
description: 'Whether the user has Admin permissions.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Contractor',
|
||||
name: 'is_contractor',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user is a contractor or an employee.'
|
||||
description: 'Whether the user is a contractor or an employee.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Project Manager',
|
||||
name: 'is_project_manager',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user has Project Manager permissions.'
|
||||
description: 'Whether the user has Project Manager permissions.',
|
||||
},
|
||||
{
|
||||
displayName: 'Roles',
|
||||
name: 'roles',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The role names assigned to this person.'
|
||||
description: 'The role names assigned to this person.',
|
||||
},
|
||||
{
|
||||
displayName: 'Timezone',
|
||||
name: 'timezone',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The user’s timezone. Defaults to the company’s timezone. See a list of <a href="/api-v2/introduction/overview/supported-timezones/">supported time zones</a>.'
|
||||
description: 'The user’s timezone. Defaults to the company’s timezone. See a list of <a href="/api-v2/introduction/overview/supported-timezones/">supported time zones</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Weekly Capacity',
|
||||
@@ -337,7 +337,7 @@ export const userFields = [
|
||||
minValue: 0,
|
||||
},
|
||||
default: 126000,
|
||||
description: 'The number of hours per week this person is available to work in seconds. Defaults to <code class="language-plaintext highlighter-rouge">126000</code> seconds (35 hours).'
|
||||
description: 'The number of hours per week this person is available to work in seconds. Defaults to <code class="language-plaintext highlighter-rouge">126000</code> seconds (35 hours).',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -372,7 +372,7 @@ export const userFields = [
|
||||
operation: [
|
||||
'update',
|
||||
],
|
||||
resource
|
||||
resource,
|
||||
},
|
||||
},
|
||||
default: {},
|
||||
@@ -382,21 +382,21 @@ export const userFields = [
|
||||
name: 'can_create_projects',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user can create projects. Only applicable to Project Managers.'
|
||||
description: 'Whether the user can create projects. Only applicable to Project Managers.',
|
||||
},
|
||||
{
|
||||
displayName: 'Can Create Invoices',
|
||||
name: 'can_create_invoices',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user can create invoices. Only applicable to Project Managers.'
|
||||
description: 'Whether the user can create invoices. Only applicable to Project Managers.',
|
||||
},
|
||||
{
|
||||
displayName: 'Can See Rates',
|
||||
name: 'can_see_rates',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user can see billable rates on projects. Only applicable to Project Managers.'
|
||||
description: 'Whether the user can see billable rates on projects. Only applicable to Project Managers.',
|
||||
},
|
||||
{
|
||||
displayName: 'Cost Rate',
|
||||
@@ -406,84 +406,84 @@ export const userFields = [
|
||||
minValue: 0,
|
||||
},
|
||||
default: 0,
|
||||
description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount.'
|
||||
description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount.',
|
||||
},
|
||||
{
|
||||
displayName: 'Default Hourly Rate',
|
||||
name: 'default_hourly_rate',
|
||||
type: 'string',
|
||||
default: '0',
|
||||
description: 'The billable rate to use for this user when they are added to a project.'
|
||||
description: 'The billable rate to use for this user when they are added to a project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Email',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The user email'
|
||||
description: 'The user email',
|
||||
},
|
||||
{
|
||||
displayName: 'First Name',
|
||||
name: 'first_name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The user first name'
|
||||
description: 'The user first name',
|
||||
},
|
||||
{
|
||||
displayName: 'Has Access To All Future Projects',
|
||||
name: 'has_access_to_all_future_projects',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user should be automatically added to future projects.'
|
||||
description: 'Whether the user should be automatically added to future projects.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Active',
|
||||
name: 'is_active',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Whether the user is active or archived.'
|
||||
description: 'Whether the user is active or archived.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Admin',
|
||||
name: 'is_admin',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user has Admin permissions.'
|
||||
description: 'Whether the user has Admin permissions.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Contractor',
|
||||
name: 'is_contractor',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user is a contractor or an employee.'
|
||||
description: 'Whether the user is a contractor or an employee.',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Project Manager',
|
||||
name: 'is_project_manager',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the user has Project Manager permissions.'
|
||||
description: 'Whether the user has Project Manager permissions.',
|
||||
},
|
||||
{
|
||||
displayName: 'Last Name',
|
||||
name: 'last_name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The user last name'
|
||||
description: 'The user last name',
|
||||
},
|
||||
{
|
||||
displayName: 'Roles',
|
||||
name: 'roles',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The role names assigned to this person.'
|
||||
description: 'The role names assigned to this person.',
|
||||
},
|
||||
{
|
||||
displayName: 'Timezone',
|
||||
name: 'timezone',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The user’s timezone. Defaults to the company’s timezone. See a list of <a href="/api-v2/introduction/overview/supported-timezones/">supported time zones</a>.'
|
||||
description: 'The user’s timezone. Defaults to the company’s timezone. See a list of <a href="/api-v2/introduction/overview/supported-timezones/">supported time zones</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Weekly Capacity',
|
||||
@@ -493,7 +493,7 @@ export const userFields = [
|
||||
minValue: 0,
|
||||
},
|
||||
default: 126000,
|
||||
description: 'The number of hours per week this person is available to work in seconds. Defaults to <code class="language-plaintext highlighter-rouge">126000</code> seconds (35 hours).'
|
||||
description: 'The number of hours per week this person is available to work in seconds. Defaults to <code class="language-plaintext highlighter-rouge">126000</code> seconds (35 hours).',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user