Small details and logs

This commit is contained in:
Iván Ovejero 2021-01-15 08:58:51 -03:00
parent 9290993400
commit 6e4b6f677e
2 changed files with 5 additions and 3 deletions

View file

@ -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}`);
}
}

View file

@ -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 });