mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
⚡ Small improvements
This commit is contained in:
parent
cb1849db9d
commit
35cb56675e
|
@ -12,7 +12,7 @@ export class NextCloudApi implements ICredentialType {
|
|||
displayName: 'Web DAV URL',
|
||||
name: 'webDavUrl',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
placeholder: 'https://nextcloud.example.com/remote.php/webdav/',
|
||||
placeholder: 'https://nextcloud.example.com/remote.php/webdav',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ export class NextCloudOAuth2Api implements ICredentialType {
|
|||
displayName: 'Web DAV URL',
|
||||
name: 'webDavUrl',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
placeholder: 'https://nextcloud.example.com/remote.php/webdav/',
|
||||
placeholder: 'https://nextcloud.example.com/remote.php/webdav',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -4,9 +4,8 @@ import {
|
|||
} from 'n8n-core';
|
||||
|
||||
import {
|
||||
IDataObject,
|
||||
} from 'n8n-workflow';
|
||||
import { OptionsWithUri } from 'request';
|
||||
OptionsWithUri,
|
||||
} from 'request';
|
||||
|
||||
/**
|
||||
* Make an API request to NextCloud
|
||||
|
|
|
@ -2,6 +2,7 @@ import {
|
|||
BINARY_ENCODING,
|
||||
IExecuteFunctions,
|
||||
} from 'n8n-core';
|
||||
|
||||
import {
|
||||
IDataObject,
|
||||
INodeTypeDescription,
|
||||
|
@ -9,10 +10,13 @@ import {
|
|||
INodeType,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import { parseString } from 'xml2js';
|
||||
import { OptionsWithUri } from 'request';
|
||||
import { nextCloudApiRequest } from './GenericFunctions';
|
||||
import {
|
||||
parseString,
|
||||
} from 'xml2js';
|
||||
|
||||
import {
|
||||
nextCloudApiRequest,
|
||||
} from './GenericFunctions';
|
||||
|
||||
export class NextCloud implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
@ -25,7 +29,7 @@ export class NextCloud implements INodeType {
|
|||
description: 'Access data on NextCloud',
|
||||
defaults: {
|
||||
name: 'NextCloud',
|
||||
color: '#22BB44',
|
||||
color: '#1cafff',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
|
|
Loading…
Reference in a new issue