aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/planitpoker/webview.js
diff options
context:
space:
mode:
authorLibravatar Emanuel Fonseca <emdfonseca@gmail.com>2023-04-07 21:43:54 +0100
committerLibravatar GitHub <noreply@github.com>2023-04-07 21:43:54 +0100
commit83f3374b8f647d942d3fabfa3c84349e987c32fe (patch)
tree91561a9c8261a2f578a5e26a02db8b640960f193 /recipes/planitpoker/webview.js
parentadd emdfonseca as a contributor for code (#332) [skip ci] (diff)
downloadferdium-recipes-83f3374b8f647d942d3fabfa3c84349e987c32fe.tar.gz
ferdium-recipes-83f3374b8f647d942d3fabfa3c84349e987c32fe.tar.zst
ferdium-recipes-83f3374b8f647d942d3fabfa3c84349e987c32fe.zip
Add PlanITPoker recipe (#327)
Diffstat (limited to 'recipes/planitpoker/webview.js')
-rw-r--r--recipes/planitpoker/webview.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/planitpoker/webview.js b/recipes/planitpoker/webview.js
new file mode 100644
index 0000000..13b8156
--- /dev/null
+++ b/recipes/planitpoker/webview.js
@@ -0,0 +1,16 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 // TODO: If your OReilly Service service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // const getMessages = () => {
10 // // TODO: Insert your notification-finding code here
11 // Ferdium.setBadge(0, 0);
12 // };
13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
16};