diff options
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  | 
