mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
30 lines
605 B
TypeScript
30 lines
605 B
TypeScript
|
import { INodeProperties, INodePropertyOptions } from "n8n-workflow";
|
||
|
|
||
|
export const resource = {
|
||
|
name: "Locale",
|
||
|
value: "locale",
|
||
|
} as INodePropertyOptions;
|
||
|
|
||
|
export const operations = [
|
||
|
{
|
||
|
displayName: "Operation",
|
||
|
name: "operation",
|
||
|
type: "options",
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [resource.value],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: "Get Locales",
|
||
|
value: "get_locales",
|
||
|
},
|
||
|
],
|
||
|
default: "get_locales",
|
||
|
description: "The operation to perform.",
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
export const fields = [] as INodeProperties[];
|