💥 Fix some more node names

This commit is contained in:
Jan Oberhauser
2020-05-12 15:45:41 +02:00
parent 15c7331e43
commit b187aa49c4
7 changed files with 12 additions and 9 deletions

View File

@@ -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',

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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';