mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +00:00
💥 Fix some more node names
This commit is contained in:
@@ -7,7 +7,7 @@ import {
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class Amqp implements INodeType {
|
||||
export class AmqpSender implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'AMQP Sender',
|
||||
name: 'amqpSender',
|
||||
@@ -33,7 +33,7 @@ import {
|
||||
export class Coda implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Coda',
|
||||
name: 'Coda',
|
||||
name: 'coda',
|
||||
icon: 'file:coda.png',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
|
||||
@@ -18,12 +18,11 @@ import {
|
||||
import {
|
||||
ITask, TaskInfo,
|
||||
} from './TaskInterface';
|
||||
import { response } from 'express';
|
||||
|
||||
export class Flow implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Flow',
|
||||
name: 'Flow',
|
||||
name: 'flow',
|
||||
icon: 'file:flow.png',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
|
||||
@@ -49,7 +49,7 @@ interface IPostMessageBody {
|
||||
export class Rocketchat implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Rocketchat',
|
||||
name: 'Rocketchat',
|
||||
name: 'rocketchat',
|
||||
icon: 'file:rocketchat.png',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
|
||||
@@ -15,8 +15,6 @@ import * as basicAuth from 'basic-auth';
|
||||
|
||||
import { Response } from 'express';
|
||||
|
||||
import { set } from 'lodash';
|
||||
|
||||
import * as fs from 'fs';
|
||||
|
||||
import * as formidable from 'formidable';
|
||||
|
||||
Reference in New Issue
Block a user