n8n/packages/nodes-base/credentials/NextCloudApi.credentials.ts

33 lines
643 B
TypeScript
Raw Normal View History

2019-06-23 03:35:23 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class NextCloudApi implements ICredentialType {
name = 'nextCloudApi';
displayName = 'NextCloud API';
documentationUrl = 'nextCloud';
2019-06-23 03:35:23 -07:00
properties = [
{
displayName: 'Web DAV URL',
name: 'webDavUrl',
type: 'string' as NodePropertyTypes,
2020-07-22 14:52:40 -07:00
placeholder: 'https://nextcloud.example.com/remote.php/webdav',
2019-06-23 03:35:23 -07:00
default: '',
},
{
displayName: 'User',
name: 'user',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}