/**
  * Delete action
  *
  * @param \Planetflow3\Domain\Model\Channel $channel
  * @FLOW3\IgnoreValidation("$channel")
  */
 public function deleteAction(\Planetflow3\Domain\Model\Channel $channel)
 {
     $this->channelRepository->remove($channel);
     $this->addFlashMessage('Channel removed.', 'Success', \TYPO3\FLOW3\Error\Message::SEVERITY_NOTICE);
     $this->redirect('index');
 }