Add credentials documentation link for e-goi node (#1277)

This commit is contained in:
Harshil Agrawal 2020-12-29 16:58:37 +05:30 committed by GitHub
parent 914b90f4a9
commit bfd967258c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@ import {
export class EgoiApi implements ICredentialType { export class EgoiApi implements ICredentialType {
name = 'egoiApi'; name = 'egoiApi';
displayName = 'e-goi API'; displayName = 'e-goi API';
documentationUrl = 'egoi';
properties = [ properties = [
// The credentials to get from user and save encrypted. // The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way // Properties can be defined exactly in the same way
@ -18,4 +19,4 @@ export class EgoiApi implements ICredentialType {
default: '', default: '',
}, },
]; ];
} }