Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Microsoft To Do Node): Add an option to set a reminder when updating a task #6918

Merged
merged 2 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/nodes-base/nodes/Microsoft/ToDo/MicrosoftToDo.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,16 @@ export class MicrosoftToDo implements INodeType {
};
}

if (body.reminderDateTime) {
body.reminderDateTime = {
dateTime: moment.tz(body.reminderDateTime, timezone).format(),
timeZone: timezone,
};
body.isReminderOn = true;
} else {
body.isReminderOn = false;
}

responseData = await microsoftApiRequest.call(
this,
'PATCH',
Expand Down
7 changes: 7 additions & 0 deletions packages/nodes-base/nodes/Microsoft/ToDo/TaskDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,13 @@ export const taskFields: INodeProperties[] = [
default: '',
description: 'The date in the specified time zone that the task is to be finished',
},
{
displayName: 'Reminder',
name: 'reminderDateTime',
type: 'dateTime',
default: '',
description: 'The date in the specified time zone that the task is to be reminded',
},
{
displayName: 'Importance',
name: 'importance',
Expand Down
Loading