From 31b7ed3234062c3519eeb3df3490f99a7e4259e4 Mon Sep 17 00:00:00 2001 From: Benjamin Ramhorst Date: Mon, 14 Feb 2022 20:22:24 +0000 Subject: [PATCH] Fixed endpoints --- lib/utils/endpoints.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/utils/endpoints.dart b/lib/utils/endpoints.dart index 65516f4..8211a4d 100644 --- a/lib/utils/endpoints.dart +++ b/lib/utils/endpoints.dart @@ -1,7 +1,6 @@ const String home = "https://leg-barkr.nw.r.appspot.com/"; const String register = "https://leg-barkr.nw.r.appspot.com/authentication/register"; const String verify = "https://leg-barkr.nw.r.appspot.com/authentication/verify"; -const String getLastLocation = "https://leg-barkr.nw.r.appspot.com/readings/last/location"; -const String getStepsToday = "https://leg-barkr.nw.r.appspot.com/readings/last/steps"; - - +const String getLastLocation = "https://leg-barkr.nw.r.appspot.com/readings/location/last"; +const String getStepsToday = "https://leg-barkr.nw.r.appspot.com/readings/steps/today"; +const String getStepsLastFiveDays = "https://leg-barkr.nw.r.appspot.com/readings/steps/last-five-days";