Beta plugins

This commit is contained in:
HaveAGitGat 2023-09-03 18:39:33 +01:00
parent 50a795dc97
commit e2cb06f0f2
117 changed files with 4414 additions and 168 deletions

View file

@ -6,14 +6,26 @@ var details = function () { return ({
name: 'Go To Flow',
description: 'Go to a different flow',
style: {
borderColor: 'red',
opacity: 0.5,
borderColor: 'green',
},
tags: '',
isStartPlugin: false,
pType: '',
requiresVersion: '2.11.01',
sidebarPosition: -1,
icon: 'faArrowRight',
inputs: [],
inputs: [
{
name: 'flowId',
type: 'string',
defaultValue: '',
inputUI: {
type: 'dropdown',
options: [],
},
tooltip: 'Specify flow ID to go to',
},
],
outputs: [],
}); };
exports.details = details;