Minor fixes for docs compatibility (#955)

*  Add documentationUrls for several nodes

*  Minor Updates

- Updated Paddle documentationUrl
- Updated CrateDB description
- Updated Monday.com description
- Fixed Nextcloud branding
- Updated Redis description
This commit is contained in:
smamudhan
2020-09-14 13:28:01 +05:30
committed by GitHub
parent ae343b9f79
commit a27278a427
6 changed files with 15 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ export class Redis implements INodeType {
icon: 'file:redis.png',
group: ['input'],
version: 1,
description: 'Gets, sends data to Redis and receives generic information.',
description: 'Get, send and update data in Redis.',
defaults: {
name: 'Redis',
color: '#0033AA',
@@ -41,12 +41,12 @@ export class Redis implements INodeType {
{
name: 'Delete',
value: 'delete',
description: 'Deletes a key from Redis.',
description: 'Delete a key from Redis.',
},
{
name: 'Get',
value: 'get',
description: 'Returns the value of a key from Redis.',
description: 'Get the value of a key from Redis.',
},
{
name: 'Info',
@@ -61,7 +61,7 @@ export class Redis implements INodeType {
{
name: 'Set',
value: 'set',
description: 'Sets the value of a key in redis.',
description: 'Set the value of a key in redis.',
},
],
default: 'info',