diff options
author | Joris | 2016-03-27 21:24:11 +0200 |
---|---|---|
committer | Joris | 2016-03-27 21:24:11 +0200 |
commit | 617d30c96792795ab8561a6262c4c5f4e023b6cf (patch) | |
tree | 3174d82e3839e942a4be17a065415b497405fd0b /src/client/elm/LoggedIn/Monthly/Action.elm | |
parent | 0c9d2b91e73f045067f7bcce6e4235fc9008f309 (diff) |
Regroup monthly modules
Diffstat (limited to 'src/client/elm/LoggedIn/Monthly/Action.elm')
-rw-r--r-- | src/client/elm/LoggedIn/Monthly/Action.elm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/elm/LoggedIn/Monthly/Action.elm b/src/client/elm/LoggedIn/Monthly/Action.elm new file mode 100644 index 0000000..bf974f9 --- /dev/null +++ b/src/client/elm/LoggedIn/Monthly/Action.elm @@ -0,0 +1,10 @@ +module LoggedIn.Monthly.Action + ( Action(..) + ) where + +import Model.Payment exposing (Payment) + +type Action = + ToggleDetail + | AddPayment Payment + | DeletePayment Payment |