From b53bb26db2bebfcc322f682c1a2d657c3f1dd683 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Tue, 14 Jun 2022 00:28:00 +0100 Subject: Feature: Add 'Google Keep' as another option in Ferdium TODOs (#247) --- src/config.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/config.ts b/src/config.ts index 865030255..6b754e643 100644 --- a/src/config.ts +++ b/src/config.ts @@ -102,6 +102,7 @@ const TODO_RTM_URL = 'https://www.rememberthemilk.com/'; const TODO_ANYDO_URL = 'https://desktop.any.do/'; const TODO_GOOGLETASKS_URL = 'https://tasks.google.com/embed/?origin=https%3A%2F%2Fcalendar.google.com&fullWidth=1'; +const TODO_GOOGLEKEEP_URL = 'https://keep.google.com/' export const TODO_SERVICE_RECIPE_IDS = { [TODO_TODOIST_URL]: 'todoist', @@ -110,6 +111,7 @@ export const TODO_SERVICE_RECIPE_IDS = { [TODO_MSTODO_URL]: 'mstodo', [TODO_HABITICA_URL]: 'habitica', [TODO_ANYDO_URL]: 'anydo', + [TODO_GOOGLEKEEP_URL]: 'googlekeep', }; export const TODO_APPS = { @@ -122,6 +124,7 @@ export const TODO_APPS = { [TODO_RTM_URL]: 'Remember The Milk', [TODO_ANYDO_URL]: 'Any.do', [TODO_GOOGLETASKS_URL]: 'Google Tasks', + [TODO_GOOGLEKEEP_URL]: 'Google Keep', [CUSTOM_TODO_SERVICE]: 'Other service', }; -- cgit v1.2.3-54-g00ecf