mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Add role parameter to user:update (Zulip) (#2336)
* ⚡ Add role parameter to user:update * ✏️ Fix typo issue
This commit is contained in:
@@ -226,14 +226,14 @@ export const userFields = [
|
||||
name: 'isAdmin',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the target user is an administrator.',
|
||||
description: 'Whether the target user is an administrator',
|
||||
},
|
||||
{
|
||||
displayName: 'Is Guest',
|
||||
name: 'isGuest',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the target user is a guest.',
|
||||
description: 'Whether the target user is a guest',
|
||||
},
|
||||
{
|
||||
displayName: 'Profile Data',
|
||||
@@ -268,6 +268,35 @@ export const userFields = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Role',
|
||||
name: 'role',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Organization Owner',
|
||||
value: 100,
|
||||
},
|
||||
{
|
||||
name: 'Organization Administrator',
|
||||
value: 200,
|
||||
},
|
||||
{
|
||||
name: 'Organization Moderator',
|
||||
value: 300,
|
||||
},
|
||||
{
|
||||
name: 'Member',
|
||||
value: 400,
|
||||
},
|
||||
{
|
||||
name: 'Guest',
|
||||
value: 600,
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'Role for the user',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
||||
@@ -8,4 +8,5 @@ export interface IUser {
|
||||
email?: string;
|
||||
password?: string;
|
||||
short_name?: string;
|
||||
role?: number;
|
||||
}
|
||||
|
||||
@@ -431,6 +431,9 @@ export class Zulip implements INodeType {
|
||||
if (additionalFields.isGuest) {
|
||||
body.is_guest = additionalFields.isGuest as boolean;
|
||||
}
|
||||
if (additionalFields.role) {
|
||||
body.role = additionalFields.role as number;
|
||||
}
|
||||
if (additionalFields.profileData) {
|
||||
//@ts-ignore
|
||||
body.profile_data = additionalFields.profileData.properties as [{}];
|
||||
|
||||
Reference in New Issue
Block a user