You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
namespace UserBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class RegistrationStandardUserController extends Controller
{
public function registerAction()
{
return $this->container
->get('pugx_multi_user.registration_manager')
->register('UserBundle\Entity\StandardUser');
}
}
But I don't know how to override it. I will also need to make a step by step registration for the "Seller type" of user so I need to redirect on the secondStep i case of success, and same page in case of faillure.
Right now, in case of faillure, I'm redirected on the FosUserBundleregistration page (and not my custom page which is something like "/pro/register"
The text was updated successfully, but these errors were encountered:
I have the controller working fine :
But I don't know how to override it. I will also need to make a step by step registration for the "Seller type" of user so I need to redirect on the secondStep i case of success, and same page in case of faillure.
Right now, in case of faillure, I'm redirected on the FosUserBundleregistration page (and not my custom page which is something like "/pro/register"
The text was updated successfully, but these errors were encountered: