n8n/packages/nodes-base/nodes/HomeAssistant/TemplateDescription.ts
Iván Ovejero 176e475c8e
:xap: Open tooltip links on new tab (#2106)
*  Create mixin

*  Implement mixin

* 🔥 Remove hardcoded attribute

* 🔨 Refactor mixin into helper

* 🔨 Refactor string replacement

* ✏️ Unrelated description fixes

*  Simplify helper import
2021-08-26 19:42:38 +02:00

53 lines
1.1 KiB
TypeScript

import {
INodeProperties
} from 'n8n-workflow';
export const templateOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'template',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'create a template',
},
],
default: 'create',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const templateFields = [
/* -------------------------------------------------------------------------- */
/* template:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Template',
name: 'template',
type: 'string',
displayOptions: {
show: {
resource: [
'template',
],
operation: [
'create',
],
},
},
required: true,
default: '',
description: 'Render a Home Assistant template. <a href="https://www.home-assistant.io/docs/configuration/templating/">See template docs for more information.</a>',
},
] as INodeProperties[];