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 {
|
export class RabbitMQ implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
|
// eslint-disable-next-line
|
||||||
displayName: 'RabbitMQ',
|
displayName: 'RabbitMQ',
|
||||||
name: 'rabbitmq',
|
name: 'rabbitmq',
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||||
|
@ -37,6 +38,19 @@ export class RabbitMQ implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
properties: [
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'Operation',
|
||||||
|
name: 'operation',
|
||||||
|
type: 'hidden',
|
||||||
|
noDataExpression: true,
|
||||||
|
default: 'send_message',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Send a Message to RabbitMQ',
|
||||||
|
value: 'send_message',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Mode',
|
displayName: 'Mode',
|
||||||
name: 'mode',
|
name: 'mode',
|
||||||
|
|
Loading…
Reference in a new issue