mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Small improvements
This commit is contained in:
@@ -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'],
|
||||
|
||||
Reference in New Issue
Block a user