From 898e7ed11ab0958fcdaf65b99b33f7b04787630a Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 24 Sep 2017 22:14:48 +0200 Subject: Bootstrap with GHCJS and reflex: - setup login and logout, - first draft of payment view. --- src/common/Model/SignIn.hs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/common/Model/SignIn.hs (limited to 'src/common/Model/SignIn.hs') diff --git a/src/common/Model/SignIn.hs b/src/common/Model/SignIn.hs new file mode 100644 index 0000000..f4da97f --- /dev/null +++ b/src/common/Model/SignIn.hs @@ -0,0 +1,16 @@ +{-# LANGUAGE DeriveGeneric #-} + +module Common.Model.SignIn + ( SignIn(..) + ) where + +import Data.Aeson (FromJSON, ToJSON) +import Data.Text (Text) +import GHC.Generics (Generic) + +data SignIn = SignIn + { _signIn_email :: Text + } deriving (Show, Generic) + +instance FromJSON SignIn +instance ToJSON SignIn -- cgit v1.2.3