2021-09-28 11:50:15 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
export const userOperations : INodeProperties [ ] = [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
noDataExpression : true ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create an user' ,
2022-07-10 13:50:51 -07:00
action : 'Create a user' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete an user' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a user' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Retrieve an user' ,
2022-07-10 13:50:51 -07:00
action : 'Get a user' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Retrieve all users' ,
2022-07-10 13:50:51 -07:00
action : 'Get all users' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update an user' ,
2022-07-10 13:50:51 -07:00
action : 'Update a user' ,
2021-09-28 11:50:15 -07:00
} ,
] ,
default : 'create' ,
} ,
] ;
export const userFields : INodeProperties [ ] = [
// ----------------------------------------
// user: create
// ----------------------------------------
{
displayName : 'Name' ,
name : 'name' ,
description : 'Login name of the user' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Role Names or IDs' ,
2021-09-28 11:50:15 -07:00
name : 'roles' ,
type : 'multiOptions' ,
2022-06-20 07:54:01 -07:00
description : 'Comma-separated list of roles to assign to the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-09-28 11:50:15 -07:00
required : true ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getRoles' ,
} ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Password' ,
name : 'password' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
options : [
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-09-28 11:50:15 -07:00
default : '' ,
} ,
{
displayName : 'Full Name' ,
name : 'realname' ,
type : 'string' ,
default : '' ,
description : 'Full name of the user' ,
} ,
] ,
} ,
// ----------------------------------------
// user: delete
// ----------------------------------------
{
displayName : 'User ID' ,
name : 'userId' ,
description : 'ID of the user to delete' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// user: get
// ----------------------------------------
{
displayName : 'User ID' ,
name : 'userId' ,
description : 'ID of the user to retrieve' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// user: getAll
// ----------------------------------------
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
description : 'Whether to return all results or only up to a given limit' ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
description : 'Max number of results to return' ,
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// user: update
// ----------------------------------------
{
displayName : 'User ID' ,
name : 'userId' ,
description : 'ID of the user to update' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'user' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
options : [
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-09-28 11:50:15 -07:00
default : '' ,
} ,
{
displayName : 'Full Name' ,
name : 'realname' ,
type : 'string' ,
default : '' ,
description : 'Full name of the user' ,
} ,
{
displayName : 'Password' ,
name : 'password' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Role Names or IDs' ,
2021-09-28 11:50:15 -07:00
name : 'roles' ,
type : 'multiOptions' ,
2022-06-20 07:54:01 -07:00
description : 'Comma-separated list of roles to assign to the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-09-28 11:50:15 -07:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getRoles' ,
} ,
} ,
] ,
} ,
] ;