aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Update.elm
diff options
context:
space:
mode:
authorJoris2016-01-03 19:57:59 +0100
committerJoris2016-01-03 19:57:59 +0100
commitd22d10da342520163014dda255d5d9bd5e1a80c0 (patch)
tree02f17aeeab9ec0f95ae8d53017e4e33de347d9d1 /src/client/elm/Update.elm
parenta8309988518af5bddf62d6a326d990fde4069b40 (diff)
downloadbudget-d22d10da342520163014dda255d5d9bd5e1a80c0.tar.gz
budget-d22d10da342520163014dda255d5d9bd5e1a80c0.tar.bz2
budget-d22d10da342520163014dda255d5d9bd5e1a80c0.zip
Move update income to the account update layer
Diffstat (limited to 'src/client/elm/Update.elm')
-rw-r--r--src/client/elm/Update.elm7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/client/elm/Update.elm b/src/client/elm/Update.elm
index b473c9d..a78be68 100644
--- a/src/client/elm/Update.elm
+++ b/src/client/elm/Update.elm
@@ -38,13 +38,6 @@ update action model =
|> Effects.task
)
- SetIncome currentTime amount ->
- ( model
- , Server.setIncome currentTime amount
- |> flip Task.onError (always <| Task.succeed NoOp)
- |> Effects.task
- )
-
GoLoggedInView users me monthlyPayments payments paymentsCount payers ->
( { model | view = V.LoggedInView (initLoggedInView users me monthlyPayments payments paymentsCount payers) }
, Effects.none