/**
  * @param \SKL\Post\Domain\Model\Post $post
  * @return void
  */
 public function updateAction(Post $post)
 {
     //		\TYPO3\Flow\var_dump($post);
     //		die();
     $this->view->assign('listCategories', $this->categoryRepository->findAll());
     $this->postRepository->update($post);
     $this->addFlashMessage('Updated the post.');
     $this->redirect('index');
 }