Update UpstashRedisMemoryApi.credential.ts

rename token label
This commit is contained in:
Henry Heng 2023-10-08 01:52:48 +01:00 committed by GitHub
parent 424e713128
commit e2355555ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -12,11 +12,11 @@ class UpstashRedisMemoryApi implements INodeCredential {
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'
'Refer to <a target="_blank" href="https://upstash.com/docs/redis/overall/getstarted">official guide</a> on how to create redis instance and get redis REST Token'
this.inputs = [
{
label: 'Upstash Redis Password',
name: 'upstashRedisPassword',
label: 'Upstash Redis REST Token',
name: 'upstashRestToken',
type: 'password'
}
]