Review changes

This commit is contained in:
Ayush Jain
2023-10-06 23:23:21 +05:30
parent 086944dc07
commit 9bae1c33f7
2 changed files with 43 additions and 13 deletions
@@ -0,0 +1,26 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class UpstashRedisMemoryApi implements INodeCredential {
label: string
name: string
version: number
description: string
inputs: INodeParams[]
constructor() {
this.label = 'Upstash Redis Memory API'
this.name = 'upstashRedisMemoryApi'
this.version = 1.0
this.description =
'Refer to <a target="_blank" href="https://upstash.com/docs/redis/overall/getstarted">official guide</a> on how to create redis instance and get password on upstash'
this.inputs = [
{
label: 'Upstash Redis Password',
name: 'upstashRedisPassword',
type: 'password'
}
]
}
}
module.exports = { credClass: UpstashRedisMemoryApi }