aboutsummaryrefslogtreecommitdiff
path: root/src/client/LoggedData.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/LoggedData.elm')
-rw-r--r--src/client/LoggedData.elm10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/LoggedData.elm b/src/client/LoggedData.elm
index 9bb0a7f..e048247 100644
--- a/src/client/LoggedData.elm
+++ b/src/client/LoggedData.elm
@@ -30,11 +30,11 @@ type alias LoggedData =
, paymentCategories : PaymentCategories
}
-build : Model -> LoggedInModel.Model -> LoggedData
-build model loggedIn =
- { currentTime = model.currentTime
- , translations = model.translations
- , conf = model.conf
+build : Time -> Translations -> Conf -> LoggedInModel.Model -> LoggedData
+build currentTime translations conf loggedIn =
+ { currentTime = currentTime
+ , translations = translations
+ , conf = conf
, users = loggedIn.users
, me = loggedIn.me
, payments = loggedIn.payments