3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-04 12:55:23 +00:00

made eula api route, formatted table, cleaned up code

This commit is contained in:
Godfrey M
2025-06-04 15:04:59 -07:00
parent 6f4cee6334
commit ee3deb9c63
6 changed files with 39 additions and 25 deletions

View File

@ -1094,6 +1094,14 @@ Route::group(['prefix' => 'v1', 'middleware' => ['api', 'api-throttle:api']], fu
]
)->name('api.users.me');
Route::get('/users/{user}/eulas',
[
Api\UsersController::class,
'eulas'
]
)->name('api.user.eulas');
Route::get('list/{status?}',
[
Api\UsersController::class,