promo admin

This commit is contained in:
CHIEFSOFT\ameye
2024-11-16 13:43:49 -05:00
parent fa370bca63
commit 6acdb789e0
2 changed files with 17 additions and 0 deletions
+7
View File
@@ -40,6 +40,13 @@ $routes->set404Override();
$routes->post('/en/promo/api/v1/start', 'Promo::promoStart');
$routes->post('/en/promo/api/v1/tasks', 'Promo::promoTask');
$routes->post('/en/promoadmin/api/v1/auth', 'Promo::promoAuth');
$routes->get('/en/promoadmin/api/v1/list', 'Promo::promoList');
$routes->post('/en/promoadmin/api/v1/list', 'Promo::promoAddRef');
$routes->get('/en/flow/api/v1/appemails', 'AirFlow::flowAppEmails');
$routes->get('/en/flow/api/v1/new-account', 'AirFlow::flowNewAccount');
+10
View File
@@ -97,4 +97,14 @@ class Promo extends BaseController
return $this->respond( $this->summaryReturnData($in,$out), 200);
}
public function promoAuth(){
}
public function promoList(){
}
public function promoAddRef(){
}
}