mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
Small details and logs
This commit is contained in:
@@ -45,7 +45,7 @@ export async function nextCloudApiRequest(this: IHookFunctions | IExecuteFunctio
|
||||
};
|
||||
|
||||
options.uri = `${credentials.webDavUrl}/${encodeURI(endpoint)}`;
|
||||
|
||||
console.log(options);
|
||||
return await this.helpers.request(options);
|
||||
} else {
|
||||
const credentials = this.getCredentials('nextCloudOAuth2Api');
|
||||
@@ -58,6 +58,7 @@ export async function nextCloudApiRequest(this: IHookFunctions | IExecuteFunctio
|
||||
return await this.helpers.requestOAuth2!.call(this, 'nextCloudOAuth2Api', options);
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
throw new Error(`NextCloud Error. Status Code: ${error.statusCode}. Message: ${error.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -526,7 +526,7 @@ export class NextCloud implements INodeType {
|
||||
},
|
||||
},
|
||||
placeholder: 'john',
|
||||
description: 'The user to add.',
|
||||
description: 'The ID of the user to add.',
|
||||
},
|
||||
{
|
||||
displayName: 'Email',
|
||||
@@ -701,7 +701,7 @@ export class NextCloud implements INodeType {
|
||||
// ----------------------------------
|
||||
requestMethod = 'POST';
|
||||
|
||||
endpoint = `/ocs/v1.php/cloud/users`;
|
||||
endpoint = 'ocs/v1.php/cloud/users';
|
||||
|
||||
headers['OCS-APIRequest'] = true;
|
||||
headers['Content-Type'] = 'application/x-www-form-urlencoded';
|
||||
@@ -737,6 +737,7 @@ export class NextCloud implements INodeType {
|
||||
|
||||
try {
|
||||
responseData = await nextCloudApiRequest.call(this, requestMethod, endpoint, body, headers, encoding);
|
||||
console.log(responseData);
|
||||
} catch (error) {
|
||||
if (this.continueOnFail() === true) {
|
||||
returnData.push({ error });
|
||||
|
||||
Reference in New Issue
Block a user