Files
WrenchBoardPromo/app/Controllers/Home.php
T
CHIEFSOFT\ameye 9eecd4f73e promor sign up
2024-09-18 10:50:34 -04:00

20 lines
531 B
PHP

<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
return view('welcome_message');
}
public function promoIndex($promo,$promoOwner=''):string{
$in["promo"] = $promo;
$in["promo_owner"] = $promoOwner;
$out = $this->APIcall('POST', $this->wrenchApiServer(). 'start',$in);
$out["task"] = $this->APIcall('POST', $this->wrenchApiServer(). 'tasks',$in)["result_list"];
return view('welcome_message', $out);
}
}