(PS-378) Seclore custom n8n node #1

Merged
atharva.dev merged 22 commits from ticket/PS-378 into main 2025-11-13 04:43:55 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit bbee58f204 - Show all commits

View File

@ -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
nitin.baranwal marked this conversation as resolved Outdated

Resolve this TODO

Resolve this TODO
@ -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',