aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pipefy/index.js
diff options
context:
space:
mode:
authorLibravatar Tania R. Zúñiga <taniazuniga.mx@gmail.com>2021-09-15 00:07:55 -0500
committerLibravatar GitHub <noreply@github.com>2021-09-15 10:37:55 +0530
commit50f93e4a5cc7c80d47bf85cd40de436aa3eb9619 (patch)
tree174f01d3b6041202b185bf10898138d2170abdd4 /recipes/pipefy/index.js
parentAdded a check to verify that the folder name of the recipe matches the recipe... (diff)
downloadferdium-recipes-50f93e4a5cc7c80d47bf85cd40de436aa3eb9619.tar.gz
ferdium-recipes-50f93e4a5cc7c80d47bf85cd40de436aa3eb9619.tar.zst
ferdium-recipes-50f93e4a5cc7c80d47bf85cd40de436aa3eb9619.zip
🚀 Add Pipefy Recipe (#711)
Diffstat (limited to 'recipes/pipefy/index.js')
-rw-r--r--recipes/pipefy/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes/pipefy/index.js b/recipes/pipefy/index.js
new file mode 100644
index 0000000..9e105e9
--- /dev/null
+++ b/recipes/pipefy/index.js
@@ -0,0 +1,6 @@
1module.exports = (Ferdi) =>
2 class Pipefy extends Ferdi {
3 overrideUserAgent() {
4 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0";
5 }
6 };