mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
⚡ Add role parameter to user:update (Zulip) (#2336)
* ⚡ Add role parameter to user:update * ✏️ Fix typo issue
This commit is contained in:
parent
3c6f38d045
commit
1a1bc26ecf
|
@ -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 [{}];
|
||||
|
|
Loading…
Reference in a new issue