add missing FromJSON instance to AuthResult

This commit is contained in:
nek0 2019-09-09 12:57:36 +02:00
parent 886651cac2
commit fa5e0c8cb2

View file

@ -105,6 +105,8 @@ data AuthResult
instance ToJSON AuthResult where instance ToJSON AuthResult where
toEncoding = genericToEncoding defaultOptions toEncoding = genericToEncoding defaultOptions
instance FromJSON AuthResult
newtype AuthToken = AuthToken ByteString deriving (Show) newtype AuthToken = AuthToken ByteString deriving (Show)