Small tweaks to README and updated icon example (#76)

This commit is contained in:
Jon
2025-05-30 10:34:51 +01:00
committed by GitHub
parent c6c8bb68b2
commit e863c55657
2 changed files with 5 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ export class HttpBin implements INodeType {
description: INodeTypeDescription = {
displayName: 'HttpBin',
name: 'httpBin',
icon: 'file:httpbin.svg',
icon: { light: 'file:httpbin.svg', dark: 'file:httpbin.svg' },
group: ['transform'],
version: 1,
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
@@ -15,6 +15,7 @@ export class HttpBin implements INodeType {
},
inputs: [NodeConnectionType.Main],
outputs: [NodeConnectionType.Main],
usableAsTool: true,
credentials: [
{
name: 'httpbinApi',