mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-14 17:25:47 +00:00
20 lines
761 B
Dart
20 lines
761 B
Dart
abstract class ApiEndpoints {
|
|
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}';
|
|
static const String sendOtp = '$baseUrl/authentication/user/send-otp';
|
|
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';
|
|
static const String rooms = '$baseUrl/room';
|
|
|
|
// Devices
|
|
static const String control = '$baseUrl/device/control';
|
|
}
|