aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Action.elm
diff options
context:
space:
mode:
authorJoris2016-03-28 17:51:14 +0200
committerJoris2016-03-28 17:51:14 +0200
commit166cd04e4b28770ede854dafc9ae30eae64102fe (patch)
tree2245a31243a165acc6f7355534da44cfd17e6038 /src/client/elm/Action.elm
parentb0d80a5458d7ba4546e5f01f5b6398ea6d23f981 (diff)
downloadbudget-166cd04e4b28770ede854dafc9ae30eae64102fe.tar.gz
budget-166cd04e4b28770ede854dafc9ae30eae64102fe.tar.bz2
budget-166cd04e4b28770ede854dafc9ae30eae64102fe.zip
Create an empty but reachable user page
Diffstat (limited to 'src/client/elm/Action.elm')
-rw-r--r--src/client/elm/Action.elm5
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