mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-25 19:28:51 +02:00
Hopefully fixed AbstractParameter exception on the LabelProfile controller
This commit is contained in:
parent
d804184073
commit
f0947fd948
14 changed files with 85 additions and 82 deletions
|
@ -44,12 +44,12 @@ use Symfony\Component\Routing\Annotation\Route;
|
|||
*/
|
||||
class GroupController extends BaseAdminController
|
||||
{
|
||||
protected $entity_class = Group::class;
|
||||
protected $twig_template = 'AdminPages/GroupAdmin.html.twig';
|
||||
protected $form_class = GroupAdminForm::class;
|
||||
protected $route_base = 'group';
|
||||
protected $attachment_class = GroupAttachment::class;
|
||||
protected $parameter_class = GroupParameter::class;
|
||||
protected string $entity_class = Group::class;
|
||||
protected string $twig_template = 'AdminPages/GroupAdmin.html.twig';
|
||||
protected string $form_class = GroupAdminForm::class;
|
||||
protected string $route_base = 'group';
|
||||
protected string $attachment_class = GroupAttachment::class;
|
||||
protected ?string $parameter_class = GroupParameter::class;
|
||||
|
||||
/**
|
||||
* @Route("/{id}/edit/{timestamp}", requirements={"id"="\d+"}, name="group_edit")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue