aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model
diff options
context:
space:
mode:
authorJoris2016-03-27 21:24:11 +0200
committerJoris2016-03-27 21:24:11 +0200
commit617d30c96792795ab8561a6262c4c5f4e023b6cf (patch)
tree3174d82e3839e942a4be17a065415b497405fd0b /src/client/elm/Model
parent0c9d2b91e73f045067f7bcce6e4235fc9008f309 (diff)
downloadbudget-617d30c96792795ab8561a6262c4c5f4e023b6cf.tar.gz
budget-617d30c96792795ab8561a6262c4c5f4e023b6cf.tar.bz2
budget-617d30c96792795ab8561a6262c4c5f4e023b6cf.zip
Regroup monthly modules
Diffstat (limited to 'src/client/elm/Model')
-rw-r--r--src/client/elm/Model/Action/MonthlyAction.elm10
-rw-r--r--src/client/elm/Model/View/LoggedIn/Monthly.elm17
2 files changed, 0 insertions, 27 deletions
diff --git a/src/client/elm/Model/Action/MonthlyAction.elm b/src/client/elm/Model/Action/MonthlyAction.elm
deleted file mode 100644
index c2de3e5..0000000
--- a/src/client/elm/Model/Action/MonthlyAction.elm
+++ /dev/null
@@ -1,10 +0,0 @@
-module Model.Action.MonthlyAction
- ( MonthlyAction(..)
- ) where
-
-import Model.Payment exposing (Payment)
-
-type MonthlyAction =
- ToggleDetail
- | AddPayment Payment
- | DeletePayment Payment
diff --git a/src/client/elm/Model/View/LoggedIn/Monthly.elm b/src/client/elm/Model/View/LoggedIn/Monthly.elm
deleted file mode 100644
index 3c6f66a..0000000
--- a/src/client/elm/Model/View/LoggedIn/Monthly.elm
+++ /dev/null
@@ -1,17 +0,0 @@
-module Model.View.LoggedIn.Monthly
- ( Monthly
- , initMonthly
- ) where
-
-import Model.Payment exposing (Payments)
-
-type alias Monthly =
- { payments : Payments
- , visibleDetail : Bool
- }
-
-initMonthly : Payments -> Monthly
-initMonthly payments =
- { payments = payments
- , visibleDetail = False
- }