aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/franz-custom-website/index.js
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-05 16:46:55 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-05 16:46:55 +0200
commit2484c63d77e05fff384cc08b6ea46a29a22a62ec (patch)
tree21b8b74f1788407a4cfb13052160398f13424ac6 /recipes/franz-custom-website/index.js
parentAdd check to ensure that generated file 'user.js' is not present in default p... (diff)
downloadferdium-recipes-2484c63d77e05fff384cc08b6ea46a29a22a62ec.tar.gz
ferdium-recipes-2484c63d77e05fff384cc08b6ea46a29a22a62ec.tar.zst
ferdium-recipes-2484c63d77e05fff384cc08b6ea46a29a22a62ec.zip
chore: repo maintenance (#732)
Diffstat (limited to 'recipes/franz-custom-website/index.js')
-rw-r--r--recipes/franz-custom-website/index.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/recipes/franz-custom-website/index.js b/recipes/franz-custom-website/index.js
index c0f91cb..6e4f228 100644
--- a/recipes/franz-custom-website/index.js
+++ b/recipes/franz-custom-website/index.js
@@ -1,5 +1,6 @@
1module.exports = Ferdi => class CustomWebsite extends Ferdi { 1module.exports = Ferdi =>
2 async validateUrl(url) { 2 class CustomWebsite extends Ferdi {
3 return true; 3 async validateUrl() {
4 } 4 return true;
5}; 5 }
6 };