From 0620d925b1045b17cad613a3cc5a1fbb3748c83c Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 27 Mar 2016 21:35:52 +0200 Subject: Moving some files --- src/client/elm/Action.elm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/client/elm/Action.elm (limited to 'src/client/elm/Action.elm') diff --git a/src/client/elm/Action.elm b/src/client/elm/Action.elm new file mode 100644 index 0000000..33954dc --- /dev/null +++ b/src/client/elm/Action.elm @@ -0,0 +1,21 @@ +module Action + ( Action(..) + ) where + +import Time exposing (Time) +import Signal exposing (Address) + +import Model.Init exposing (Init) + +import SignIn.Action as SignInAction +import LoggedIn.Action as LoggedInAction + +type Action = + NoOp + | SignIn String + | UpdateTime Time + | GoLoggedInView Init + | UpdateSignIn SignInAction.Action + | UpdateLoggedIn LoggedInAction.Action + | GoSignInView + | SignOut -- cgit v1.2.3