aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/Home/AddPayment/Action.elm
blob: a692b15d77766a421252799c33752f4593cfeabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module LoggedIn.Home.AddPayment.Action
  ( Action(..)
  ) where

import Model.Payment exposing (Frequency)

type Action =
  NoOp
  | Init Frequency
  | UpdateName String
  | UpdateCost String
  | AddError (Maybe String) (Maybe String)
  | ToggleFrequency
  | WaitingServer