From 617d30c96792795ab8561a6262c4c5f4e023b6cf Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 27 Mar 2016 21:24:11 +0200 Subject: Regroup monthly modules --- src/client/elm/Model/Action/MonthlyAction.elm | 10 ---------- src/client/elm/Model/View/LoggedIn/Monthly.elm | 17 ----------------- 2 files changed, 27 deletions(-) delete mode 100644 src/client/elm/Model/Action/MonthlyAction.elm delete mode 100644 src/client/elm/Model/View/LoggedIn/Monthly.elm (limited to 'src/client/elm/Model') 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 - } -- cgit v1.2.3