mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
🔀 Merge branch 'pballhausen-patch-2'
This commit is contained in:
commit
93f3a958f3
|
@ -656,8 +656,8 @@ export class Mattermost implements INodeType {
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Desactive',
|
name: 'Deactive',
|
||||||
value: 'desactive',
|
value: 'deactive',
|
||||||
description: 'Deactivates the user and revokes all its sessions by archiving its user object.',
|
description: 'Deactivates the user and revokes all its sessions by archiving its user object.',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -665,7 +665,7 @@ export class Mattermost implements INodeType {
|
||||||
description: 'The operation to perform.',
|
description: 'The operation to perform.',
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// user:desactivate
|
// user:deactivate
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
{
|
{
|
||||||
displayName: 'User ID',
|
displayName: 'User ID',
|
||||||
|
@ -678,7 +678,7 @@ export class Mattermost implements INodeType {
|
||||||
'user',
|
'user',
|
||||||
],
|
],
|
||||||
operation: [
|
operation: [
|
||||||
'desactive',
|
'deactive',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -900,9 +900,12 @@ export class Mattermost implements INodeType {
|
||||||
Object.assign(body, otherOptions);
|
Object.assign(body, otherOptions);
|
||||||
}
|
}
|
||||||
} else if (resource === 'user') {
|
} else if (resource === 'user') {
|
||||||
if (operation === 'desactive') {
|
// TODO: Remove the "deactive" again in the future. In here temporary
|
||||||
|
// to not break workflows for people which set the option before
|
||||||
|
// typo got fixed. JO 2020-01-17
|
||||||
|
if (operation === 'deactive' || operation === 'desactive') {
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// user:desactive
|
// user:deactive
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
const userId = this.getNodeParameter('userId', i) as string;
|
const userId = this.getNodeParameter('userId', i) as string;
|
||||||
requestMethod = 'DELETE';
|
requestMethod = 'DELETE';
|
||||||
|
|
Loading…
Reference in a new issue