From ed79419783ebf85056a27cdcd8802eac0d802f81 Mon Sep 17 00:00:00 2001 From: tukiplus <98679174+tukiplus@users.noreply.github.com> Date: Wed, 16 Feb 2022 20:33:50 +0900 Subject: Add WorkFlowy recipe (#829) --- recipes/workflowy/icon.svg | 121 +++++++++++++++++++++++++++++++++++++++++ recipes/workflowy/index.js | 1 + recipes/workflowy/package.json | 9 +++ recipes/workflowy/webview.js | 8 +++ 4 files changed, 139 insertions(+) create mode 100644 recipes/workflowy/icon.svg create mode 100644 recipes/workflowy/index.js create mode 100644 recipes/workflowy/package.json create mode 100644 recipes/workflowy/webview.js (limited to 'recipes/workflowy') diff --git a/recipes/workflowy/icon.svg b/recipes/workflowy/icon.svg new file mode 100644 index 0000000..f60f041 --- /dev/null +++ b/recipes/workflowy/icon.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/recipes/workflowy/index.js b/recipes/workflowy/index.js new file mode 100644 index 0000000..d792bf3 --- /dev/null +++ b/recipes/workflowy/index.js @@ -0,0 +1 @@ +module.exports = Ferdi => class Workflowy extends Ferdi {}; diff --git a/recipes/workflowy/package.json b/recipes/workflowy/package.json new file mode 100644 index 0000000..feb0d82 --- /dev/null +++ b/recipes/workflowy/package.json @@ -0,0 +1,9 @@ +{ + "id": "workflowy", + "name": "WorkFlowy", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://workflowy.com" + } +} diff --git a/recipes/workflowy/webview.js b/recipes/workflowy/webview.js new file mode 100644 index 0000000..97238c9 --- /dev/null +++ b/recipes/workflowy/webview.js @@ -0,0 +1,8 @@ +module.exports = () => { + // TODO: If your workflowy service has unread messages, uncomment these lines to implement the logic for updating the badges + // const getMessages = () => { + // // TODO: Insert your notification-finding code here + // Ferdi.setBadge(0, 0); + // }; + // Ferdi.loop(getMessages); +}; -- cgit v1.2.3-54-g00ecf