mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-05 22:25:30 +00:00
rm conditional that might be unnecessary
This commit is contained in:
@ -266,11 +266,11 @@ class UsersController extends Controller
|
||||
$user->location_id = $request->input('location_id', null);
|
||||
if ($request->has('company_id')) {
|
||||
if ($user->assets->count() > 0) {
|
||||
if ($user->assets()->pluck('company_id') != $user->getRawOriginal('company_id')) {
|
||||
//if ($user->assets()->pluck('company_id') != $user->getRawOriginal('company_id')) {
|
||||
{
|
||||
return back()->with('error', 'this user has assets, check them in first');
|
||||
}
|
||||
}
|
||||
//}
|
||||
}
|
||||
}
|
||||
$user->company_id = Company::getIdForUser($request->input('company_id', null));
|
||||
|
||||
Reference in New Issue
Block a user