feat: add deploy route and sidebar navigation
This commit is contained in:
@@ -416,6 +416,11 @@ Route::middleware(['access-check', 'dashboard.auth'])->group(function () {
|
|||||||
Route::put('/{credential}', [IntegrationCredentialsController::class, 'update'])->name('update');
|
Route::put('/{credential}', [IntegrationCredentialsController::class, 'update'])->name('update');
|
||||||
Route::delete('/{credential}', [IntegrationCredentialsController::class, 'destroy'])->name('destroy');
|
Route::delete('/{credential}', [IntegrationCredentialsController::class, 'destroy'])->name('destroy');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Deploy
|
||||||
|
Route::get('/dashboard/deploy', function () {
|
||||||
|
return inertia()->render('Dashboard/Deploy/Index');
|
||||||
|
})->name('dashboard.deploy');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -31,4 +31,10 @@ export const quickActions = [
|
|||||||
href: null,
|
href: null,
|
||||||
icon: 'cog',
|
icon: 'cog',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Deploy',
|
||||||
|
route: 'dashboard.deploy',
|
||||||
|
href: null,
|
||||||
|
icon: 'cog',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user