in Education by
What's the appropriate way to add a user to a role.. for every new user, do I have to do: $em->getRepository('MyBundle:Role')->findOneBy(array('name' => 'ROLE_USER')) every time? I'm not too much of a fan of how large UserBundle is.... and I don't use XML. I'm using YML/Annotations, so the UserBundle is pretty hard to follow for certain things. So yes, what's the best / cleanest way to do a user signup and associate him to a default role? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
The simplest way I've found is just to define roles as a field of type array on your User object. Then, when you're creating the user (on registration or whatnot), it's as simple as $roles = array('ROLE_USER'); $user->setRoles($roles); I've put together a mockup of my user registration process in this gist. It's not fully functional (I can flesh it out later if needed), but it should get you pointed in the right direction.

Related questions

0 votes
    I think this is a common requirement eg. "How can I create an ACL like only author can edit his ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 21, 2022 in Education by JackTerrance
0 votes
    I've been working with Symfony (2.x) for the first time and I had some questions regarding the ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    Which of the following fixed database roles can add or remove user IDs? (a) db_accessadmin (b) ... , Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    Which of the following fixed database roles can add or remove user IDs? (a) db_accessadmin (b) ... , Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    I have a behat+mink scenario where a step visits a URL (mink), and the controller puts something ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Dec 28, 2021 in Education by JackTerrance
0 votes
    SAP Fiori apps can be classified based on _____. 1. Line of Business 2. Industry 3. Roles A. 1,2 B. 2,3 C. 1,2,3...
asked Mar 2, 2023 in Technology by JackTerrance
0 votes
    What are Ansible's roles?...
asked Jan 29, 2023 in Technology by JackTerrance
0 votes
    1. Identify the various roles and functions of the different departments in a hotel. Please answer the above question....
asked Aug 23, 2022 in Education by JackTerrance
0 votes
    I have a JHipster monolithic app with oauth2 running Keycloak locally. I don't know how exactly should ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    Hi I'm having an issue trying to display a symbol that denotes a role that can be mentioned in ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 13, 2022 in Education by JackTerrance
0 votes
    I'm working with secure application roles to grant access to users. In its dumbest form, it looks like ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    How many cloud service roles are provided by Azure?...
asked Sep 26, 2021 in Technology by Editorial Staff
0 votes
    Which of the following Windows Server roles is not supported on Azure Virtual Machines? 1. Application server 2. ... Remote Access 4. Windows server update server 5. Webserver...
asked Sep 23, 2021 in Technology by JackTerrance
0 votes
    Which of the following Windows Server roles is not supported on Azure Virtual Machines? Application server Hyper-v Remote Access Windows server update server Webserver...
asked Aug 28, 2021 in Technology by JackTerrance
0 votes
    What are the roles of a Scrum Master?...
asked Aug 19, 2021 in Technology by JackTerrance
...