mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
feat(Slack Node): Add support for manually inputting a channel name (#5488)
This commit is contained in:
parent
593b5d299a
commit
7954ed3cfb
|
@ -59,7 +59,7 @@ export async function slackApiRequest(
|
|||
}'`,
|
||||
{
|
||||
description:
|
||||
'Hint: Upgrate to the Slack plan that includes the funcionality you want to use.',
|
||||
'Hint: Upgrade to a Slack plan that includes the functionality you want to use.',
|
||||
},
|
||||
);
|
||||
} else if (response.error === 'missing_scope') {
|
||||
|
|
|
@ -181,6 +181,12 @@ export const messageFields: INodeProperties[] = [
|
|||
],
|
||||
placeholder: 'C0122KQ70S7E',
|
||||
},
|
||||
{
|
||||
displayName: 'By Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
placeholder: '#general',
|
||||
},
|
||||
{
|
||||
displayName: 'By URL',
|
||||
name: 'url',
|
||||
|
|
Loading…
Reference in a new issue