/**
  * @param \SKL\Post\Domain\Model\Post $newPost
  * @return void
  */
 public function createAction(Post $newPost)
 {
     //		\TYPO3\Flow\var_dump($newPost);
     //		die();
     $this->view->assign('listCategories', $this->categoryRepository->findAll());
     $this->postRepository->add($newPost);
     $this->addFlashMessage('Created a new post.');
     $this->redirect('index');
 }