diff options
Diffstat (limited to 'src/client/elm/Model/Action.elm')
-rw-r--r-- | src/client/elm/Model/Action.elm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/client/elm/Model/Action.elm b/src/client/elm/Model/Action.elm index 7267259..60c1aca 100644 --- a/src/client/elm/Model/Action.elm +++ b/src/client/elm/Model/Action.elm @@ -5,17 +5,15 @@ module Model.Action import Time exposing (Time) import Signal exposing (Address) -import Model.User exposing (Users, UserId) -import Model.Payment exposing (Payments) -import Model.Payer exposing (Payers) import Model.Action.SignInAction exposing (SignInAction) import Model.Action.LoggedInAction exposing (LoggedInAction) +import Model.Init exposing (Init) type Action = NoOp | SignIn String | UpdateTime Time - | GoLoggedInView Users UserId Payments Payments Int Payers + | GoLoggedInView Init | UpdateSignIn SignInAction | UpdateLoggedIn LoggedInAction | GoSignInView |