This commit is contained in:
Hamza-Ayed
2023-08-13 02:19:18 +03:00
parent f84c82bcc8
commit 8b46545fbc
23 changed files with 715 additions and 176 deletions

View File

@@ -1,5 +1,5 @@
class AppLink {
static const String server = 'https://ride.mobile-app.store/';
static const String server = 'https://ride.mobile-app.store';
static const String googleMapsLink = 'https://maps.googleapis.com/maps/api/';
static const String test = "$server/test.php";
@@ -9,12 +9,11 @@ class AppLink {
static const String uploadImageType = "$server/uploadImageType.php";
//==================certifcate==========
static const String certifcate =
'https://portfolio.mobile-app.store/hamzaayed/certifications';
static const String getCertificate = "$certifcate/get.php";
static const String addCertificate = "$certifcate/add.php";
static const String deleteCertificate = "$certifcate/delete.php";
static const String updateCertificate = "$certifcate/update.php";
static const String location = '$server/ride/location';
static const String getCarsLocationByPassenger = "$location/get.php";
static const String addCarsLocationByPassenger = "$location/add.php";
static const String deleteCarsLocationByPassenger = "$location/delete.php";
static const String updateCarsLocationByPassenger = "$location/update.php";
//==================Blog=============
static const String blog =
@@ -23,4 +22,8 @@ class AppLink {
static const String addBlog = "$blog/add.php";
static const String deleteBlog = "$blog/delete.php";
static const String updateBlog = "$blog/update.php";
//===================Auth============
static const String auth = 'https://ride.mobile-app.store/auth/';
static const String login = "$auth/login.php";
}