Exemplo n.º 1
0
 public function addUserQueue(Workspace $workspace, User $user)
 {
     $wksrq = new WorkspaceRegistrationQueue();
     $wksrq->setUser($user);
     $role = $this->roleManager->getCollaboratorRole($workspace);
     $wksrq->setRole($role);
     $wksrq->setWorkspace($workspace);
     $this->om->persist($wksrq);
     $this->om->flush();
 }