diff options
| author | Xe Iaso <me@christine.website> | 2023-01-04 14:37:22 -0500 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2023-01-04 14:37:22 -0500 |
| commit | 351069d9f91edab96425bcd221858529acb7e08a (patch) | |
| tree | 8d601372b5e67e6f129ff896204cdc97a49d8f3d /dhall/types/Config.dhall | |
| parent | b96a44649a5cdf7609ebdc975a118c01cbd74b1a (diff) | |
| download | xesite-351069d9f91edab96425bcd221858529acb7e08a.tar.xz xesite-351069d9f91edab96425bcd221858529acb7e08a.zip | |
implement pronouns support
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'dhall/types/Config.dhall')
| -rw-r--r-- | dhall/types/Config.dhall | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dhall/types/Config.dhall b/dhall/types/Config.dhall index 914c89a..245c645 100644 --- a/dhall/types/Config.dhall +++ b/dhall/types/Config.dhall @@ -10,6 +10,8 @@ let NagMessage = ./NagMessage.dhall let SeriesDescription = ./SeriesDescription.dhall +let PronounSet = ./PronounSet.dhall + let Prelude = ../Prelude.dhall let defaultPort = env:PORT ? 3030 @@ -24,7 +26,6 @@ in { Type = , authors : Prelude.Map.Type Text Author.Type , port : Natural , clackSet : List Text - , resumeFname : Text , webMentionEndpoint : Text , miToken : Text , jobHistory : List Job.Type @@ -32,6 +33,7 @@ in { Type = , seriesDescMap : Prelude.Map.Type Text Text , notableProjects : List Link.Type , contactLinks : List Link.Type + , pronouns : List PronounSet.Type } , default = { signalboost = [] : List Person.Type @@ -39,7 +41,6 @@ in { Type = , authors = [] : List Author.Type , port = defaultPort , clackSet = [ "Ashlynn" ] - , resumeFname = "./static/resume/resume.md" , webMentionEndpoint = defaultWebMentionEndpoint , miToken = "${env:MI_TOKEN as Text ? ""}" , jobHistory = [] : List Job.Type @@ -47,5 +48,6 @@ in { Type = , seriesDescMap = [] : Prelude.Map.Type Text Text , notableProjects = [] : List Link.Type , contactLinks = [] : List Link.Type + , pronouns = [] : List PronounSet.Type } } |
