mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
profile
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
abstract class ApiEndpoints {
|
||||
static const String baseUrl = 'https://syncrow.azurewebsites.net';
|
||||
static const String baseUrl = 'https://syncrow-dev.azurewebsites.net';
|
||||
// static const String baseUrl = 'http://100.107.182.63:4001'; //Localhost
|
||||
|
||||
////////////////////////////////////// Authentication ///////////////////////////////
|
||||
@ -151,4 +151,15 @@ abstract class ApiEndpoints {
|
||||
//multiple-time offline
|
||||
static const String deleteTemporaryPassword =
|
||||
'$baseUrl/door-lock/temporary-password/{doorLockUuid}/{passwordId}';
|
||||
|
||||
|
||||
//user
|
||||
|
||||
static const String getUser = '$baseUrl/user/{userUuid}';
|
||||
static const String saveRegion = '$baseUrl/user/region/{userUuid}';
|
||||
static const String saveTimeZone = '$baseUrl/user/timezone/{userUuid}';
|
||||
static const String saveName = '$baseUrl/user/name/{userUuid}';
|
||||
static const String sendPicture = '$baseUrl/user/profile-picture/{userUuid}';
|
||||
static const String getRegion = '$baseUrl/region';
|
||||
static const String getTimezone = '$baseUrl/timezone';
|
||||
}
|
||||
|
Reference in New Issue
Block a user