From f712b5214ec1d5b1a4cff9f165af0f7e126a2d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 29 Jan 2021 11:39:45 -0300 Subject: [PATCH] Remove unused description --- .../nodes/Reddit/AllRedditDescription.ts | 106 ------------------ 1 file changed, 106 deletions(-) delete mode 100644 packages/nodes-base/nodes/Reddit/AllRedditDescription.ts diff --git a/packages/nodes-base/nodes/Reddit/AllRedditDescription.ts b/packages/nodes-base/nodes/Reddit/AllRedditDescription.ts deleted file mode 100644 index 116a2e56d3..0000000000 --- a/packages/nodes-base/nodes/Reddit/AllRedditDescription.ts +++ /dev/null @@ -1,106 +0,0 @@ -// import { -// INodeProperties, -// } from 'n8n-workflow'; - -// export const allRedditOperations = [ -// { -// displayName: 'Operation', -// name: 'operation', -// type: 'options', -// default: 'get', -// description: 'Operation to perform', -// options: [ -// { -// name: 'Get All', -// value: 'getAll', -// }, -// ], -// displayOptions: { -// show: { -// resource: [ -// 'allReddit', -// ], -// }, -// }, -// }, -// ] as INodeProperties[]; - -// export const allRedditFields = [ -// { -// displayName: 'Information', -// name: 'information', -// type: 'options', -// required: true, -// default: 'trending', -// description: 'All-Reddit information to retrieve', -// options: [ -// { -// name: 'Trending', -// value: 'trending', -// description: 'Currently trending subreddits', -// }, -// { -// name: 'Best', -// value: 'best', -// description: 'Top posts in all of Reddit', -// }, -// ], -// displayOptions: { -// show: { -// resource: [ -// 'allReddit', -// ], -// operation: [ -// 'getAll', -// ], -// }, -// }, -// }, -// { -// displayName: 'Return All', -// name: 'returnAll', -// type: 'boolean', -// default: false, -// description: 'Return all results', -// displayOptions: { -// show: { -// resource: [ -// 'allReddit', -// ], -// operation: [ -// 'getAll', -// ], -// information: [ -// 'best', -// ], -// }, -// }, -// }, -// { -// displayName: 'Limit', -// name: 'limit', -// type: 'number', -// default: 5, -// description: 'The number of results to return', -// typeOptions: { -// minValue: 1, -// maxValue: 100, -// }, -// displayOptions: { -// show: { -// resource: [ -// 'allReddit', -// ], -// operation: [ -// 'getAll', -// ], -// information: [ -// 'best', -// ], -// returnAll: [ -// false, -// ], -// }, -// }, -// }, -// ] as INodeProperties[];