aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Dialog/Model.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Dialog/Model.elm')
-rw-r--r--src/client/elm/Dialog/Model.elm3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/elm/Dialog/Model.elm b/src/client/elm/Dialog/Model.elm
index a3901f9..d4fd484 100644
--- a/src/client/elm/Dialog/Model.elm
+++ b/src/client/elm/Dialog/Model.elm
@@ -16,14 +16,17 @@ import Model.Translations exposing (Translations)
import Dialog.AddPayment.Model as AddPayment
import Dialog.AddIncome.Model as AddIncome
+import Dialog.AddCategory.Model as AddCategory
type alias Model =
{ addPayment : Form String AddPayment.Model
, addIncome : Form String AddIncome.Model
+ , addCategory : Form String AddCategory.Model
}
init : Model
init =
{ addPayment = AddPayment.init
, addIncome = AddIncome.init
+ , addCategory = AddCategory.init
}