diff options
| author | Xe Iaso <me@christine.website> | 2022-04-02 16:47:54 +0000 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2022-04-02 16:47:54 +0000 |
| commit | e5ee825c0a6b735ce20101605d1363338036c649 (patch) | |
| tree | e0fcac826ba4f84c9623236652862b9a3026721f /config.dhall | |
| parent | e66541234517c7f398b296a005a79d0295aa8526 (diff) | |
| download | xesite-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.dhall | 13 |
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 = |
