mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
🔀 Merge branch 'patch-1' of https://github.com/toadle/n8n into toadle-patch-1
This commit is contained in:
commit
79dd8c1adf
|
@ -215,7 +215,10 @@ export class Raindrop implements INodeType {
|
||||||
};
|
};
|
||||||
delete updateFields.collectionId;
|
delete updateFields.collectionId;
|
||||||
}
|
}
|
||||||
|
if (updateFields.pleaseParse === true) {
|
||||||
|
body.pleaseParse = {};
|
||||||
|
delete updateFields.pleaseParse;
|
||||||
|
}
|
||||||
if (updateFields.tags) {
|
if (updateFields.tags) {
|
||||||
body.tags = (updateFields.tags as string).split(',').map(tag => tag.trim()) as string[];
|
body.tags = (updateFields.tags as string).split(',').map(tag => tag.trim()) as string[];
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,6 +106,13 @@ export const bookmarkFields: INodeProperties[] = [
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether this bookmark is marked as favorite.',
|
description: 'Whether this bookmark is marked as favorite.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Fetch Cover/Description/HTML for URL',
|
||||||
|
name: 'pleaseParse',
|
||||||
|
type: 'boolean',
|
||||||
|
default: false,
|
||||||
|
description: 'Whether Raindrop should load cover, description and HTML for the URL',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order',
|
displayName: 'Order',
|
||||||
name: 'order',
|
name: 'order',
|
||||||
|
@ -294,6 +301,13 @@ export const bookmarkFields: INodeProperties[] = [
|
||||||
default: false,
|
default: false,
|
||||||
description: 'Whether this bookmark is marked as favorite.',
|
description: 'Whether this bookmark is marked as favorite.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Please Parse',
|
||||||
|
name: 'pleaseParse',
|
||||||
|
type: 'boolean',
|
||||||
|
default: false,
|
||||||
|
description: 'Whether Raindrop should reload cover, description and HTML for the URL',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Order',
|
displayName: 'Order',
|
||||||
name: 'order',
|
name: 'order',
|
||||||
|
|
Loading…
Reference in a new issue