flowInterestcount

This commit is contained in:
CHIEFSOFT\ameye
2024-09-06 10:23:09 -04:00
parent 7c9e1e8c24
commit 60f595d8e8
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ $routes->get('/en/flow/api/v1/approve-reminder','AirFlow::flowApproveReminder');
$routes->get('/en/flow/api/v1/signup-report', 'AirFlow::flowSignupReport');
$routes->get('/en/flow/api/v1/refresh-blog', 'AirFlow::flowRefreshBlog');
$routes->get('/en/flow/api/v1/notifications', 'AirFlow::flowSendNotifications');
$routes->get('/en/flow/api/v1/interestcount', 'AirFlow::flowInterestcount');
include "RoutesV1.php";
+9
View File
@@ -45,6 +45,15 @@ class AirFlow extends BaseController
// return []; //json_encode( $final_out );
}
//
public function flowInterestcount(){
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$out =[];
log_message('critical', "AirFlow::flowInterestcount ********* ALL ".serialize($in) );
return []; //json_encode( $final_out );
}
public function flowApproveReminder(){
$raw_json = file_get_contents('php://input');