aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/View/LoggedIn
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Model/View/LoggedIn')
-rw-r--r--src/client/elm/Model/View/LoggedIn/AddPayment.elm29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/client/elm/Model/View/LoggedIn/AddPayment.elm b/src/client/elm/Model/View/LoggedIn/AddPayment.elm
deleted file mode 100644
index c7680bb..0000000
--- a/src/client/elm/Model/View/LoggedIn/AddPayment.elm
+++ /dev/null
@@ -1,29 +0,0 @@
-module Model.View.LoggedIn.AddPayment
- ( AddPayment
- , initAddPayment
- ) where
-
-import Result as Result exposing (Result(..))
-import Json.Decode exposing ((:=))
-
-import Model.Translations exposing (..)
-import Model.Payment exposing (PaymentFrequency(..))
-
-type alias AddPayment =
- { name : String
- , nameError : Maybe String
- , cost : String
- , costError : Maybe String
- , frequency : PaymentFrequency
- , waitingServer : Bool
- }
-
-initAddPayment : PaymentFrequency -> AddPayment
-initAddPayment frequency =
- { name = ""
- , nameError = Nothing
- , cost = ""
- , costError = Nothing
- , frequency = frequency
- , waitingServer = False
- }