fipamo/app/Http/Controllers/API/InitAPIController.php
ro 2f0e1fdc62
implemented install from scratch
activated the fresh install process for setting up a brand new fipamo
install
2024-04-16 15:36:57 -06:00

25 lines
556 B
PHP

<?php
namespace App\Http\Controllers\API;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Services\InitService;
class InitAPIController extends Controller
{
protected $init;
public function __construct(InitService $initService)
{
$this->init = $initService;
}
//init stuff
public function setupFresh(Request $request)
{
$result = $this->init->fresh(json_decode($request->getContent()));
return response()->json($result)->header('Content-Type', 'application/json');
}
}