aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/freshservice
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2023-01-19 22:50:09 +0000
committerLibravatar GitHub <noreply@github.com>2023-01-19 22:50:09 +0000
commit6a12a29e1224939aa115a14715a4415e14b0b389 (patch)
treeac0d61fcde02e061d833a8ce9986417d2a092dab /recipes/freshservice
parentfix: add mastodon hosted option and remove teamId (diff)
downloadferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.tar.gz
ferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.tar.zst
ferdium-recipes-6a12a29e1224939aa115a14715a4415e14b0b389.zip
feat: add several recipes (#293)
Diffstat (limited to 'recipes/freshservice')
-rw-r--r--recipes/freshservice/icon.svg16
-rw-r--r--recipes/freshservice/index.js1
-rw-r--r--recipes/freshservice/package.json9
-rw-r--r--recipes/freshservice/webview.js9
4 files changed, 35 insertions, 0 deletions
diff --git a/recipes/freshservice/icon.svg b/recipes/freshservice/icon.svg
new file mode 100644
index 0000000..b6eed43
--- /dev/null
+++ b/recipes/freshservice/icon.svg
@@ -0,0 +1,16 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Generator: Adobe Illustrator 27.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4 viewBox="0 0 652 652" style="enable-background:new 0 0 652 652;" xml:space="preserve">
5<style type="text/css">
6 .st0{fill:#08C7FB;}
7 .st1{fill:#FFFFFF;}
8</style>
9<g>
10 <path class="st0" d="M326.3,641.9L326.3,641.9C152.3,641.9,10.4,500.7,10.4,326c0-174.1,141.1-315.9,315.9-315.9h236.6
11 c43.7,0,78.6,35.6,78.6,78.6v236.6C641.6,500.7,500.4,641.9,326.3,641.9"/>
12 <path class="st1" d="M321.6,482.6c4,2.7,9.4,2,12.1-2l99.5-138.5l22.9-32.3c5.4-7.4,0-18.1-9.4-18.1h-44.4H297.4l37-111.6
13 c1.3-3.4,0-7.4-3.4-10.1c-4-2.7-9.4-2-12.1,2l-99.5,138.5l-22.9,32.3c-5.4,7.4,0,18.1,9.4,18.1h44.4h105.5l-37,111.6
14 C316.9,475.9,318.3,479.9,321.6,482.6"/>
15</g>
16</svg>
diff --git a/recipes/freshservice/index.js b/recipes/freshservice/index.js
new file mode 100644
index 0000000..e7c549b
--- /dev/null
+++ b/recipes/freshservice/index.js
@@ -0,0 +1 @@
module.exports = Ferdium => class FreshService extends Ferdium {};
diff --git a/recipes/freshservice/package.json b/recipes/freshservice/package.json
new file mode 100644
index 0000000..8c3da32
--- /dev/null
+++ b/recipes/freshservice/package.json
@@ -0,0 +1,9 @@
1{
2 "id": "freshservice",
3 "name": "Freshservice",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://freshservice.com"
8 }
9}
diff --git a/recipes/freshservice/webview.js b/recipes/freshservice/webview.js
new file mode 100644
index 0000000..56a20b6
--- /dev/null
+++ b/recipes/freshservice/webview.js
@@ -0,0 +1,9 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
9};