Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Mattermost/v1/actions/user/invite/description.ts
Iván Ovejero 0764c49dcf 🔥 Remove line breaks from param descriptions (#2473)
* 🔥 Remove line breaks from param descriptions

* 🔥 Remove more line breaks

* 🎨 Fix spacing for list item in tooltip

*  Apply multiline with <p> tags

*  Improve <code> and <a> tags

* ✏️ Improve grammar and spelling

*  Add missing <p> tags

* ✏️ Make "multiple" phrasing consistent

*  Fix unneeded quote escapes

*  Encode angle brackets

*  Fix typo and copy-paste artifact
2021-11-25 18:10:06 +01:00

45 lines
685 B
TypeScript

import {
UserProperties,
} from '../../Interfaces';
export const userInviteDescription: UserProperties = [
{
displayName: 'Team ID',
name: 'teamId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getTeams',
},
required: true,
displayOptions: {
show: {
resource: [
'user',
],
operation: [
'invite',
],
},
},
default: '',
},
{
displayName: 'Emails',
name: 'emails',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'user',
],
operation: [
'invite',
],
},
},
default: '',
description: `User's email. Multiple emails can be set separated by comma.`,
},
];