From 09627a6ef023888d7832cd0ef81fb6fd646bba2b Mon Sep 17 00:00:00 2001 From: Prakash Palanisamy <51423001+RyuuPendragon@users.noreply.github.com> Date: Mon, 29 Aug 2022 12:00:35 +0530 Subject: recipes: add initial SimpleLogin service --- recipes/simplelogin/icon.svg | 112 +++++++++++++++++++++++++++++++++++++++ recipes/simplelogin/index.js | 1 + recipes/simplelogin/package.json | 9 ++++ recipes/simplelogin/webview.js | 9 ++++ 4 files changed, 131 insertions(+) create mode 100644 recipes/simplelogin/icon.svg create mode 100644 recipes/simplelogin/index.js create mode 100644 recipes/simplelogin/package.json create mode 100644 recipes/simplelogin/webview.js (limited to 'recipes') diff --git a/recipes/simplelogin/icon.svg b/recipes/simplelogin/icon.svg new file mode 100644 index 0000000..13f0855 --- /dev/null +++ b/recipes/simplelogin/icon.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/recipes/simplelogin/index.js b/recipes/simplelogin/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/simplelogin/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/simplelogin/package.json b/recipes/simplelogin/package.json new file mode 100644 index 0000000..6d12b3c --- /dev/null +++ b/recipes/simplelogin/package.json @@ -0,0 +1,9 @@ +{ + "id": "simplelogin", + "name": "SimpleLogin", + "version": "1.0.0", + "license": "MIT", + "config": { + "serviceURL": "https://app.simplelogin.io/" + } +} diff --git a/recipes/simplelogin/webview.js b/recipes/simplelogin/webview.js new file mode 100644 index 0000000..46366f4 --- /dev/null +++ b/recipes/simplelogin/webview.js @@ -0,0 +1,9 @@ +const _path = _interopRequireDefault(require('path')); + +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; \ No newline at end of file -- cgit v1.2.3-54-g00ecf