aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/Home/Model.elm
blob: 217a8510978d272d05fa4cb08525a76e0abfd417 (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
module LoggedIn.Home.Model
  ( Model
  , init
  ) where

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

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
  }