Merge pull request #10476 from snipe/fixes/custom_fieldsets_index

Fixed missing index for fieldsets
This commit is contained in:
snipe 2021-12-30 13:18:13 -08:00 committed by GitHub
commit 950a23b0f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,12 @@ use Redirect;
class CustomFieldsetsController extends Controller
{
public function index()
{
return redirect()->route("fields.index")
->with("error", trans('admin/custom_fields/message.fieldset.does_not_exist'));
}
/**
* Validates and stores a new custom field.
*