diff --git a/frontend/lib/constants/api_constants.dart b/frontend/lib/constants/api_constants.dart index cdb6ebd..6081edc 100644 --- a/frontend/lib/constants/api_constants.dart +++ b/frontend/lib/constants/api_constants.dart @@ -1,8 +1,12 @@ class ApiConstants { - static const String baseUrl = 'https://api.wesal.online'; + static const String baseUrl = 'http://localhost:8080'; // Auth endpoints static const String loginEndpoint = '/login'; + static const String registerEndpoint = '/register'; + static const String checkInvitationEndpoint = '/checkInvitation'; + static const String createInvitationCodeEndpoint = + '/admin/createInvitationCode'; // User endpoints static const String getUserEndpoint = '/getUser';