mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Fix E-goi brand name (#1307)
This commit is contained in:
parent
65062dbd48
commit
b85f55659e
|
@ -6,7 +6,7 @@ import {
|
||||||
|
|
||||||
export class EgoiApi implements ICredentialType {
|
export class EgoiApi implements ICredentialType {
|
||||||
name = 'egoiApi';
|
name = 'egoiApi';
|
||||||
displayName = 'e-goi API';
|
displayName = 'E-goi API';
|
||||||
documentationUrl = 'egoi';
|
documentationUrl = 'egoi';
|
||||||
properties = [
|
properties = [
|
||||||
// The credentials to get from user and save encrypted.
|
// The credentials to get from user and save encrypted.
|
||||||
|
|
|
@ -26,15 +26,15 @@ import * as moment from 'moment-timezone';
|
||||||
|
|
||||||
export class Egoi implements INodeType {
|
export class Egoi implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'e-goi',
|
displayName: 'E-goi',
|
||||||
name: 'egoi',
|
name: 'egoi',
|
||||||
icon: 'file:egoi.png',
|
icon: 'file:egoi.png',
|
||||||
group: ['output'],
|
group: ['output'],
|
||||||
version: 1,
|
version: 1,
|
||||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
description: 'Consume e-goi API',
|
description: 'Consume E-goi API',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'e-goi',
|
name: 'E-goi',
|
||||||
color: '#4cacd6',
|
color: '#4cacd6',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
|
|
Loading…
Reference in a new issue