diff options
author | Joris | 2016-03-27 21:35:52 +0200 |
---|---|---|
committer | Joris | 2016-03-27 21:35:52 +0200 |
commit | 0620d925b1045b17cad613a3cc5a1fbb3748c83c (patch) | |
tree | 8969b19254deec47e8ad63f973a7f7ff2a3144b4 /src/client/elm/Action.elm | |
parent | 617d30c96792795ab8561a6262c4c5f4e023b6cf (diff) |
Moving some files
Diffstat (limited to 'src/client/elm/Action.elm')
-rw-r--r-- | src/client/elm/Action.elm | 21 |
1 files changed, 21 insertions, 0 deletions
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 |