aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/Home/Model.elm
blob: 26af63cae0606b87421e0eef90f71109cade399a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module LoggedIn.Home.Model
  ( Model
  , init
  ) where

import LoggedIn.Home.Model.Payer exposing (Payers)

import Model.User exposing (Users, UserId)
import Model.Payment exposing (PaymentId, Payments, Frequency(..))

import LoggedIn.Home.AddPayment.Model as AddPaymentModel

type alias Model =
  { add : AddPaymentModel.Model
  , paymentEdition : Maybe PaymentId
  , currentPage : Int
  , monthlyDetail : Bool
  }

init : Model
init =
  { add = AddPaymentModel.init Punctual
  , paymentEdition = Nothing
  , currentPage = 1
  , monthlyDetail = False
  }