Skip to content

Commit

Permalink
another artificial build to test the cache
Browse files Browse the repository at this point in the history
  • Loading branch information
gallais committed Oct 17, 2023
1 parent d883556 commit a650ca9
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions GeneratePeople.hs
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,18 @@ data Link =

instance FromJSON Link

data Person =
Person { name :: String
, ident :: Maybe String
, pronouns :: Maybe String
, title :: Maybe String
, status :: Status
, picture :: Maybe String
, email :: Maybe String
, links :: Maybe [Link]
, description :: Markdown
, phdTopics :: Maybe [Markdown] -- Only relevant for status == Academic
}
deriving (Show, Eq, Generic)
data Person = Person
{ name :: String
, ident :: Maybe String
, pronouns :: Maybe String
, title :: Maybe String
, status :: Status
, picture :: Maybe String
, email :: Maybe String
, links :: Maybe [Link]
, description :: Markdown
, phdTopics :: Maybe [Markdown] -- Only relevant for status == Academic
} deriving (Show, Eq, Generic)

instance FromJSON Person

Expand Down

0 comments on commit a650ca9

Please sign in to comment.