I'm sure this is a simple question but I can't quite see or find the correct way to do it.
How do I add a role to a user when that user is created using the registration form?
|
I'm sure this is a simple question but I can't quite see or find the correct way to do it. How do I add a role to a user when that user is created using the registration form? |
||||
|
|
|
Found it. I was on the right track :) Override the registration form handler. https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_forms.md Add
before
|
||||
|
|
|
Don't add it to your constructor, ... my god. This is not a good way to change role at registration, because it ll change role at all actions of user. ( Bad for performance and security) Please follow tetranz advice, Use the overrriding form way is better. But there is a good way to solve it. Please wait i ll give you an update. Try to overide registration controller and add your user role line: |
|||
|
|
I'd just do it in the constructor of the user class if it involves all new users:
|
||||
|
|