3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 08:05:47 +00:00

Fix keyes

This commit is contained in:
Marcus Moore
2025-06-09 12:55:38 -07:00
parent 2af7605451
commit 0d3d2e2e78

View File

@ -207,11 +207,11 @@ class UsersController extends Controller
}
if ($request->filled('manages_users_count')) {
$users->has('manages_users_count', '=', $request->input('manages_users_count'));
$users->has('managesUsers', '=', $request->input('manages_users_count'));
}
if ($request->filled('manages_locations_count')) {
$users->has('manages_locations_count', '=', $request->input('manages_locations_count'));
$users->has('managedLocations', '=', $request->input('manages_locations_count'));
}
if ($request->filled('autoassign_licenses')) {