Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我确定这是一个简单的问题,但我看不到或找不到正确的方法。
当使用注册表单创建用户时,如何向用户添加角色?
找到了。我走在正确的轨道上:)
覆盖注册表单处理程序。
https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_forms.md
添加
$user->addRole('ROLE_MYROLE');
前
parent::onSuccess()