Beispiel #1
0
 /**
  * Called when a user wants to leave a project
  */
 public function leaveAction()
 {
     $project = $this->byId();
     $group = $project->getGroup();
     if ($group) {
         $this->groupService->removeFromGroup($group, za()->getUser());
     }
     $this->_redirect($this->getCallingUrl());
 }