mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Merge pull request #10476 from snipe/fixes/custom_fieldsets_index
Fixed missing index for fieldsets
This commit is contained in:
commit
950a23b0f4
|
@ -23,6 +23,12 @@ use Redirect;
|
||||||
class CustomFieldsetsController extends Controller
|
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.
|
* Validates and stores a new custom field.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue