You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haskell-servant
Hi all)
I'm using Servant (very good library :-) ) and it is interesting for me to know is there any way to have header optional? type GetNames = "names" :> Get '[JSON] (Maybe(Headers '[Header "smth" String]) [Name]) or type GetNames = "names" :> Get '[JSON] (Headers '[Maybe(Header "smth" String)] [Name])
Nigel Rantor
unread,
Jan 1, 2017, 4:38:30 PM1/1/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haskell-servant
I hit the same problem and since then there has been the addition of noHeader, see below;