mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -08:00
Added new bulk checkin routes
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
5d1cd89838
commit
e047d5516c
|
@ -165,7 +165,7 @@ Route::group(
|
|||
[BulkAssetsController::class, 'update']
|
||||
)->name('hardware/bulksave');
|
||||
|
||||
// Bulk checkout / checkin
|
||||
// Bulk checkout
|
||||
Route::get('bulkcheckout',
|
||||
[BulkAssetsController::class, 'showCheckout']
|
||||
)->name('hardware/bulkcheckout');
|
||||
|
@ -173,7 +173,17 @@ Route::group(
|
|||
Route::post('bulkcheckout',
|
||||
[BulkAssetsController::class, 'storeCheckout']
|
||||
)->name('hardware/bulkcheckout');
|
||||
});
|
||||
|
||||
// Bulk checkin
|
||||
Route::get('bulkcheckin',
|
||||
[BulkAssetsController::class, 'showCheckin']
|
||||
)->name('hardware/bulkcheckin');
|
||||
|
||||
Route::post('bulkcheckin',
|
||||
[BulkAssetsController::class, 'storeCheckin']
|
||||
)->name('hardware/bulkcheckin');
|
||||
|
||||
});
|
||||
|
||||
Route::resource('hardware',
|
||||
AssetsController::class,
|
||||
|
|
Loading…
Reference in a new issue