9/8/1-captin

This commit is contained in:
Hamza-Ayed
2023-09-08 18:25:14 +03:00
parent c2600c5938
commit a626915f45
69 changed files with 1808 additions and 316 deletions

View File

@@ -6,6 +6,7 @@ class AppLink {
//===============firebase==========================
static const String getTokens = "$server/ride/firebase/get.php";
static const String addTokens = "$server/ride/firebase/add.php";
static const String addTokensDriver = "$server/ride/firebase/addDriver.php";
//=======================Wallet===================
static const String wallet = '$server/ride/passengerWallet/';
@@ -20,6 +21,7 @@ class AppLink {
//=======================promo===================ride.mobile-app.store/ride/promo/get.php
static const String promo = '$server/ride/promo';
static const String getPassengersPromo = "$promo/get.php";
static const String getPromoBytody = "$promo/getPromoBytody.php";
static const String addPassengersPromo = "$promo/add.php";
static const String deletePassengersPromo = "$promo/delete.php";
static const String updatePassengersPromo = "$promo/update.php";
@@ -59,9 +61,16 @@ class AppLink {
static const String updateprofile = "$profile/update.php";
//===================Auth============
static const String auth = 'https://ride.mobile-app.store/auth';
static const String login = "$auth/login.php";
static const String signUp = "$auth/signup.php";
static const String sendVerifyEmail = "$auth/sendVerifyEmail.php";
static const String verifyEmail = "$auth/verifyEmail.php";
//===================Auth Captin============
static const String authCaptin = 'https://ride.mobile-app.store/auth/captin';
static const String loginCaptin = "$authCaptin/login.php";
static const String signUpCaptin = "$authCaptin/register.php";
static const String sendVerifyEmailCaptin = "$authCaptin/sendVerifyEmail.php";
static const String verifyEmailCaptin = "$authCaptin/verifyEmail.php";
}