flowInterestcount
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user