public function reinventAction()
 {
     $eventId = $this->_getParam('id');
     $queue = new ZendJobQueue();
     $jobQuery = array('name' => self::JOB_INVITATION_PREFIX . $eventId);
     $jobList = $queue->getJobsList($jobQuery);
     foreach ($jobList as $job) {
         $queue->restartJob($job['id']);
     }
     $this->_redirect('/');
 }