mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-14 17:25:47 +00:00
Semi-implemented getting spaces feature
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
abstract class ApiEndpoints {
|
||||
static const String baseUrl = 'http://100.107.182.63:4001';
|
||||
static const String baseUrl = 'https://syncrow.azurewebsites.net';
|
||||
|
||||
// Authentication
|
||||
static const String signUp = '$baseUrl/authentication/user/signup';
|
||||
static const String login = '$baseUrl/authentication/user/login';
|
||||
static const String deleteUser = '$baseUrl/authentication/user/delete/{id}';
|
||||
@ -8,4 +9,7 @@ abstract class ApiEndpoints {
|
||||
static const String verifyOtp = '$baseUrl/authentication/user/verify-otp';
|
||||
static const String forgetPassword =
|
||||
'$baseUrl/authentication/user/forget-password';
|
||||
|
||||
// Spaces
|
||||
static const String spaces = '$baseUrl/home';
|
||||
}
|
||||
|
Reference in New Issue
Block a user