This commit is contained in:
CHIEFSOFT\ameye
2024-08-31 07:22:01 -04:00
parent 150e2490f0
commit 43942441ef
3 changed files with 24 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Controllers;
class AirFlow extends BaseController
{
public function flowNewAccount(){
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$out =[];
log_message('critical', "AirFlow::flowNewAccount ********* ALL ".serialize($in) );
return []; //json_encode( $final_out );
}
}