aboutsummaryrefslogtreecommitdiff
path: root/src/client/Model
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-07-19 16:07:15 +0200
committerJoris Guyonvarch2015-07-19 16:07:15 +0200
commit0d589e12a0c32936303de46b1e462dd19648170d (patch)
tree95527317fae74ed620ad1b118abbbe2ccf616d19 /src/client/Model
parente4eefaa5b418780e6fb63e929f826b927bbeac68 (diff)
Login with a token validation
Diffstat (limited to 'src/client/Model')
-rw-r--r--src/client/Model/View.elm3
-rw-r--r--src/client/Model/View/SignIn.elm15
2 files changed, 17 insertions, 1 deletions
diff --git a/src/client/Model/View.elm b/src/client/Model/View.elm
index ca819e3..3e3cbca 100644
--- a/src/client/Model/View.elm
+++ b/src/client/Model/View.elm
@@ -3,8 +3,9 @@ module Model.View
) where
import Model.Payment exposing (Payments)
+import Model.View.SignIn exposing (..)
type View =
LoadingView
| PaymentView Payments
- | SignInView String
+ | SignInView SignIn
diff --git a/src/client/Model/View/SignIn.elm b/src/client/Model/View/SignIn.elm
new file mode 100644
index 0000000..1c8eae7
--- /dev/null
+++ b/src/client/Model/View/SignIn.elm
@@ -0,0 +1,15 @@
+module Model.View.SignIn
+ ( SignIn
+ , initSignIn
+ ) where
+
+type alias SignIn =
+ { login : String
+ , authentication : Maybe (Result String String)
+ }
+
+initSignIn : SignIn
+initSignIn =
+ { login = ""
+ , authentication = Nothing
+ }