diff --git a/recipes/rydoo/icon.svg b/recipes/rydoo/icon.svg new file mode 100644 index 000000000..f3591d454 --- /dev/null +++ b/recipes/rydoo/icon.svg @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/recipes/rydoo/index.js b/recipes/rydoo/index.js new file mode 100644 index 000000000..427033792 --- /dev/null +++ b/recipes/rydoo/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => class Rydoo extends Ferdium {}; diff --git a/recipes/rydoo/package.json b/recipes/rydoo/package.json new file mode 100644 index 000000000..c7aac5bc6 --- /dev/null +++ b/recipes/rydoo/package.json @@ -0,0 +1,9 @@ +{ + "id": "rydoo", + "name": "Rydoo", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://app.rydoo.com/" + } +} diff --git a/recipes/rydoo/webview.js b/recipes/rydoo/webview.js new file mode 100644 index 000000000..2a81dec32 --- /dev/null +++ b/recipes/rydoo/webview.js @@ -0,0 +1,16 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges + // const getMessages = () => { + // // TODO: Insert your notification-finding code here + // Ferdium.setBadge(0, 0); + // }; + // Ferdium.loop(getMessages); + + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +};