mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
47 lines
1.5 KiB
PHP
47 lines
1.5 KiB
PHP
<?php
|
|
|
|
// Licenses
|
|
Route::group(['prefix' => 'licenses', 'middleware' => ['auth']], function () {
|
|
Route::get('{licenseId}/clone', ['as' => 'clone/license', 'uses' => 'Licenses\LicensesController@getClone']);
|
|
|
|
Route::get('{licenseId}/freecheckout', [
|
|
'as' => 'licenses.freecheckout',
|
|
'uses' => 'Licenses\LicensesController@getFreeLicense',
|
|
]);
|
|
Route::get('{licenseId}/checkout/{seatId?}', [
|
|
'as' => 'licenses.checkout',
|
|
'uses' => 'Licenses\LicenseCheckoutController@create',
|
|
]);
|
|
Route::post(
|
|
'{licenseId}/checkout/{seatId?}',
|
|
['as' => 'licenses.checkout', 'uses' => 'Licenses\LicenseCheckoutController@store']
|
|
);
|
|
Route::get('{licenseSeatId}/checkin/{backto?}', [
|
|
'as' => 'licenses.checkin',
|
|
'uses' => 'Licenses\LicenseCheckinController@create',
|
|
]);
|
|
|
|
Route::post('{licenseId}/checkin/{backto?}', [
|
|
'as' => 'licenses.checkin.save',
|
|
'uses' => 'Licenses\LicenseCheckinController@store',
|
|
]);
|
|
|
|
Route::post(
|
|
'{licenseId}/upload',
|
|
['as' => 'upload/license', 'uses' => 'Licenses\LicenseFilesController@store']
|
|
);
|
|
Route::delete(
|
|
'{licenseId}/deletefile/{fileId}',
|
|
['as' => 'delete/licensefile', 'uses' => 'Licenses\LicenseFilesController@destroy']
|
|
);
|
|
Route::get(
|
|
'{licenseId}/showfile/{fileId}/{download?}',
|
|
['as' => 'show.licensefile', 'uses' => 'Licenses\LicenseFilesController@show']
|
|
);
|
|
});
|
|
|
|
Route::resource('licenses', 'Licenses\LicensesController', [
|
|
'middleware' => ['auth'],
|
|
'parameters' => ['license' => 'license_id'],
|
|
]);
|