Move the early return to the controller instead of the Label model

This commit is contained in:
Ivan Nieto Vivanco 2023-09-05 13:23:51 -06:00
parent 085a993340
commit 91b1cc7121
2 changed files with 7 additions and 5 deletions

View file

@ -58,8 +58,14 @@ class BulkAssetsController extends Controller
switch ($request->input('bulk_actions')) {
case 'labels':
$this->authorize('view', Asset::class);
$assets_found = Asset::find($asset_ids);
if ($assets_found->isEmpty()){
return redirect()->back();
}
return (new Label)
->with('assets', Asset::find($asset_ids))
->with('assets', $assets_found)
->with('settings', Setting::getSettings())
->with('bulkedit', true)
->with('count', 0);

View file

@ -39,10 +39,6 @@ class Label implements View
$assets = $this->data->get('assets');
$offset = $this->data->get('offset');
$template = $this->data->get('template');
if ($assets->isEmpty()){
return redirect()->back();
}
// If disabled, pass to legacy view
if ((!$settings->label2_enable) && (!$template)) {