mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
fix: Show RabbitMQ node in nodes panel (#5598)
This commit is contained in:
parent
06c5ecbdf3
commit
4f5013ff53
|
@ -17,6 +17,7 @@ import { rabbitmqConnectExchange, rabbitmqConnectQueue } from './GenericFunction
|
|||
|
||||
export class RabbitMQ implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
// eslint-disable-next-line
|
||||
displayName: 'RabbitMQ',
|
||||
name: 'rabbitmq',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
|
@ -37,6 +38,19 @@ export class RabbitMQ implements INodeType {
|
|||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'hidden',
|
||||
noDataExpression: true,
|
||||
default: 'send_message',
|
||||
options: [
|
||||
{
|
||||
name: 'Send a Message to RabbitMQ',
|
||||
value: 'send_message',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Mode',
|
||||
name: 'mode',
|
||||
|
|
Loading…
Reference in a new issue