mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: Show RabbitMQ node in nodes panel (#5598)
This commit is contained in:
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user