Sfoglia il codice sorgente

Refactoring controller

feature/ticket
Fab 3 anni fa
parent
commit
f306d16975
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      Controller/User/AccountAdminController.php

+ 2
- 1
Controller/User/AccountAdminController.php Vedi File

@@ -6,6 +6,7 @@ use EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto;
use EasyCorp\Bundle\EasyAdminBundle\Provider\AdminContextProvider;
use Lc\SovBundle\Doctrine\EntityManager;
use Lc\SovBundle\Form\User\ChangePasswordFormType;
use Lc\SovBundle\Form\User\ProfileFormType;
use Lc\SovBundle\Form\User\UserMerchantFormType;
use Lc\SovBundle\Model\User\User;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
@@ -26,7 +27,7 @@ class AccountAdminController extends AbstractController
public function profile(Request $request): Response
{
$user = $this->getUser();
$form = $this->createForm(UserMerchantFormType::class, $user);
$form = $this->createForm(ProfileFormType::class, $user);

$form->handleRequest($request);


Loading…
Annulla
Salva