From 960aa996fb0accfd1f0a0cacb3831e727321240c Mon Sep 17 00:00:00 2001 From: sBubshait Date: Mon, 21 Jul 2025 14:55:14 +0300 Subject: [PATCH] feat: hook up the front end with the production API --- frontend/lib/constants/api_constants.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/lib/constants/api_constants.dart b/frontend/lib/constants/api_constants.dart index 7b4f6ad..cff2042 100644 --- a/frontend/lib/constants/api_constants.dart +++ b/frontend/lib/constants/api_constants.dart @@ -1,10 +1,10 @@ class ApiConstants { - static const String baseUrl = 'http://localhost:8080'; - + static const String baseUrl = 'https://api.wesal.online'; + // Auth endpoints static const String loginEndpoint = '/login'; - + // User endpoints static const String getUserEndpoint = '/getUser'; static const String updateUserEndpoint = '/updateUser'; -} \ No newline at end of file +}