aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-06-14 00:28:00 +0100
committerLibravatar GitHub <noreply@github.com>2022-06-14 04:58:00 +0530
commitb53bb26db2bebfcc322f682c1a2d657c3f1dd683 (patch)
tree4fdbfef262f635c9620f0d8bee5d820eb95f33d2 /src/config.ts
parentFix service labels cut off when using Slim Sidebar (#245) (diff)
downloadferdium-app-b53bb26db2bebfcc322f682c1a2d657c3f1dd683.tar.gz
ferdium-app-b53bb26db2bebfcc322f682c1a2d657c3f1dd683.tar.zst
ferdium-app-b53bb26db2bebfcc322f682c1a2d657c3f1dd683.zip
Feature: Add 'Google Keep' as another option in Ferdium TODOs (#247)
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts3
1 files changed, 3 insertions, 0 deletions
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/';
102const TODO_ANYDO_URL = 'https://desktop.any.do/'; 102const TODO_ANYDO_URL = 'https://desktop.any.do/';
103const TODO_GOOGLETASKS_URL = 103const TODO_GOOGLETASKS_URL =
104 'https://tasks.google.com/embed/?origin=https%3A%2F%2Fcalendar.google.com&fullWidth=1'; 104 'https://tasks.google.com/embed/?origin=https%3A%2F%2Fcalendar.google.com&fullWidth=1';
105const TODO_GOOGLEKEEP_URL = 'https://keep.google.com/'
105 106
106export const TODO_SERVICE_RECIPE_IDS = { 107export const TODO_SERVICE_RECIPE_IDS = {
107 [TODO_TODOIST_URL]: 'todoist', 108 [TODO_TODOIST_URL]: 'todoist',
@@ -110,6 +111,7 @@ export const TODO_SERVICE_RECIPE_IDS = {
110 [TODO_MSTODO_URL]: 'mstodo', 111 [TODO_MSTODO_URL]: 'mstodo',
111 [TODO_HABITICA_URL]: 'habitica', 112 [TODO_HABITICA_URL]: 'habitica',
112 [TODO_ANYDO_URL]: 'anydo', 113 [TODO_ANYDO_URL]: 'anydo',
114 [TODO_GOOGLEKEEP_URL]: 'googlekeep',
113}; 115};
114 116
115export const TODO_APPS = { 117export const TODO_APPS = {
@@ -122,6 +124,7 @@ export const TODO_APPS = {
122 [TODO_RTM_URL]: 'Remember The Milk', 124 [TODO_RTM_URL]: 'Remember The Milk',
123 [TODO_ANYDO_URL]: 'Any.do', 125 [TODO_ANYDO_URL]: 'Any.do',
124 [TODO_GOOGLETASKS_URL]: 'Google Tasks', 126 [TODO_GOOGLETASKS_URL]: 'Google Tasks',
127 [TODO_GOOGLEKEEP_URL]: 'Google Keep',
125 [CUSTOM_TODO_SERVICE]: 'Other service', 128 [CUSTOM_TODO_SERVICE]: 'Other service',
126}; 129};
127 130