mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-23 18:28:49 +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
|
@ -58,12 +58,12 @@ use Symfony\Contracts\Translation\TranslatorInterface;
|
|||
*/
|
||||
class CurrencyController extends BaseAdminController
|
||||
{
|
||||
protected $entity_class = Currency::class;
|
||||
protected $twig_template = 'AdminPages/CurrencyAdmin.html.twig';
|
||||
protected $form_class = CurrencyAdminForm::class;
|
||||
protected $route_base = 'currency';
|
||||
protected $attachment_class = CurrencyAttachment::class;
|
||||
protected $parameter_class = CurrencyParameter::class;
|
||||
protected string $entity_class = Currency::class;
|
||||
protected string $twig_template = 'AdminPages/CurrencyAdmin.html.twig';
|
||||
protected string $form_class = CurrencyAdminForm::class;
|
||||
protected string $route_base = 'currency';
|
||||
protected string $attachment_class = CurrencyAttachment::class;
|
||||
protected ?string $parameter_class = CurrencyParameter::class;
|
||||
|
||||
protected ExchangeRateUpdater $exchangeRateUpdater;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue