Minor improvements to Strapi-Node

This commit is contained in:
Jan Oberhauser
2020-11-11 09:45:50 +01:00
parent a5ecf3d58d
commit 73e1399c42
4 changed files with 18 additions and 10 deletions

View File

@@ -17,6 +17,9 @@ export class StrapiApi implements ICredentialType {
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
typeOptions: {
password: true,
},
default: '',
},
{
@@ -24,6 +27,7 @@ export class StrapiApi implements ICredentialType {
name: 'url',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'https://api.example.com',
},
];
}