From bbee58f204164a530863614fbd3488f7669022a0 Mon Sep 17 00:00:00 2001 From: "atharva.dev" Date: Tue, 28 Oct 2025 12:40:08 +0530 Subject: [PATCH] node and operations name simplified --- nodes/SecloreProtect/SecloreProtect.node.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nodes/SecloreProtect/SecloreProtect.node.ts b/nodes/SecloreProtect/SecloreProtect.node.ts index 57f9116..d676d74 100644 --- a/nodes/SecloreProtect/SecloreProtect.node.ts +++ b/nodes/SecloreProtect/SecloreProtect.node.ts @@ -8,7 +8,7 @@ import { unprotect } from './operations/unprotect'; export class SecloreProtect implements INodeType { description: INodeTypeDescription = { - displayName: 'Seclore Protect', + displayName: 'Seclore', name: 'secloreProtect', icon: 'file:../../icons/seclore.svg', usableAsTool: true, // TODO: make it false/ don't allow it to be used as a tool @@ -17,7 +17,7 @@ export class SecloreProtect implements INodeType { subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}', description: 'Protect files using Seclore DRM', defaults: { - name: 'Seclore Protect', + name: 'Seclore', }, inputs: ['main'], outputs: ['main'], @@ -57,13 +57,13 @@ export class SecloreProtect implements INodeType { name: 'Protect with Hot Folder', value: 'protectWithHotFolder', description: 'Protect a file using HotFolder ID configuration', - action: 'Protect file with hotfolder', + action: 'Protect with hotfolder', }, { name: 'Unprotect', value: 'unprotect', description: 'Unprotect a file using file ID', - action: 'Unprotect file', + action: 'Unprotect', }, ], default: 'protectWithHotFolder',