diff --git a/app/Containers/Dashboard/UI/WEB/Routes/web.php b/app/Containers/Dashboard/UI/WEB/Routes/web.php index f5683bc..ea47717 100755 --- a/app/Containers/Dashboard/UI/WEB/Routes/web.php +++ b/app/Containers/Dashboard/UI/WEB/Routes/web.php @@ -421,6 +421,10 @@ Route::middleware(['access-check', 'dashboard.auth'])->group(function () { Route::get('/dashboard/deploy', function () { return inertia()->render('Dashboard/Deploy/Index'); })->name('dashboard.deploy'); + + // Deploy API + Route::post('/api/deploy', [\App\Containers\Dashboard\UI\API\Controllers\DeployController::class, 'store']); + Route::get('/api/deploy/status', [\App\Containers\Dashboard\UI\API\Controllers\DeployController::class, 'status']); });