mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-27 21:52:26 -05:00
14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
import { issueSelect } from '../../shared/descriptions';
|
|
|
|
const showOnlyForIssueGet = {
|
|
operation: ['get'],
|
|
resource: ['issue'],
|
|
};
|
|
|
|
export const issueGetDescription: INodeProperties[] = [
|
|
{
|
|
...issueSelect,
|
|
displayOptions: { show: showOnlyForIssueGet },
|
|
},
|
|
];
|