aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model
diff options
context:
space:
mode:
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
- }