summaryrefslogtreecommitdiff
path: root/config.json
diff options
context:
space:
mode:
authorstuebinm2021-11-19 01:29:28 +0100
committerstuebinm2021-11-19 01:29:28 +0100
commit321f4d5fa118515dcde522e1ad01ddd65741828b (patch)
treeaefb3ff2cb96d91059cbf3c16f6f7c81da145a5e /config.json
parent12025514261f524d7a4ded461709a7d151cc1b36 (diff)
add domain allow- and blocklists for weblinks
(these use a rather crude regex for parsing, which may be possible to side-step, and which should probably be replaced by something that was actually written while following the relevant rfc)
Diffstat (limited to 'config.json')
-rw-r--r--config.json6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.json b/config.json
index 4870974..32f566f 100644
--- a/config.json
+++ b/config.json
@@ -2,7 +2,9 @@
"AssemblyTag":"assemblyname",
"ScriptInject":null,
"AllowScripts":true,
- "MaxLintLevel":"Suggestion",
+ "MaxLintLevel":"Fatal",
"DontCopyAssets":true,
- "LinkPrefix":"https://exit.rc3.world?link="
+ "LinkPrefix":"https://exit.rc3.world?link=",
+ "AllowedDomains":["example.org"],
+ "BlockedDomains":[]
}