diff options
author | Joris | 2016-03-28 17:51:14 +0200 |
---|---|---|
committer | Joris | 2016-03-28 17:51:14 +0200 |
commit | 166cd04e4b28770ede854dafc9ae30eae64102fe (patch) | |
tree | 2245a31243a165acc6f7355534da44cfd17e6038 /src/client/elm/Action.elm | |
parent | b0d80a5458d7ba4546e5f01f5b6398ea6d23f981 (diff) |
Create an empty but reachable user page
Diffstat (limited to 'src/client/elm/Action.elm')
-rw-r--r-- | src/client/elm/Action.elm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/elm/Action.elm b/src/client/elm/Action.elm index 33954dc..38c0def 100644 --- a/src/client/elm/Action.elm +++ b/src/client/elm/Action.elm @@ -5,6 +5,10 @@ module Action import Time exposing (Time) import Signal exposing (Address) +import TransitRouter + +import Route exposing (Route) + import Model.Init exposing (Init) import SignIn.Action as SignInAction @@ -18,4 +22,5 @@ type Action = | UpdateSignIn SignInAction.Action | UpdateLoggedIn LoggedInAction.Action | GoSignInView + | RouterAction (TransitRouter.Action Route) | SignOut |