aboutsummaryrefslogtreecommitdiff
path: root/config.dhall
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2022-04-02 16:47:54 +0000
committerXe Iaso <me@christine.website>2022-04-02 16:47:54 +0000
commite5ee825c0a6b735ce20101605d1363338036c649 (patch)
treee0fcac826ba4f84c9623236652862b9a3026721f /config.dhall
parente66541234517c7f398b296a005a79d0295aa8526 (diff)
downloadxesite-e5ee825c0a6b735ce20101605d1363338036c649.tar.xz
xesite-e5ee825c0a6b735ce20101605d1363338036c649.zip
signal boost: make links optional
Closes #326 Closes #209 Signed-off-by: Xe <me@christine.website>
Diffstat (limited to 'config.dhall')
-rw-r--r--config.dhall13
1 files changed, 11 insertions, 2 deletions
diff --git a/config.dhall b/config.dhall
index 95ae077..4d86a88 100644
--- a/config.dhall
+++ b/config.dhall
@@ -1,7 +1,16 @@
let Person =
- { Type = { name : Text, tags : List Text, gitLink : Text, twitter : Text }
+ { Type =
+ { name : Text
+ , tags : List Text
+ , gitLink : Optional Text
+ , twitter : Optional Text
+ }
, default =
- { name = "", tags = [] : List Text, gitLink = "", twitter = "" }
+ { name = ""
+ , tags = [] : List Text
+ , gitLink = None Text
+ , twitter = None Text
+ }
}
let Author =