Sort n8n user operation options

Reorder the user operation list so the n8n lint rule requiring\nalphabetized option labels passes after introducing the Archive\noperation.

Signed-off-by: Cursor Agent <cursoragent@cursor.com>
This commit is contained in:
Cursor Agent
2026-05-27 00:57:04 +00:00
committed by Bryan Frimin
parent 23070b18b5
commit a71a7bb56f

View File

@@ -33,6 +33,12 @@ export const description: INodeProperties[] = [
},
},
options: [
{
name: 'Archive',
value: 'removeUser',
description: 'Archive a user in the organization',
action: 'Archive a user',
},
{
name: 'Create',
value: 'createUser',
@@ -57,12 +63,6 @@ export const description: INodeProperties[] = [
description: 'List all users in the organization',
action: 'List users',
},
{
name: 'Archive',
value: 'removeUser',
description: 'Archive a user in the organization',
action: 'Archive a user',
},
{
name: 'Update',
value: 'updateUser',