/**
  * shows's the hidden category
  *
  * @param \Lelesys\Plugin\News\Domain\Model\Category $category
  * @return void
  */
 public function showCategory(\Lelesys\Plugin\News\Domain\Model\Category $category)
 {
     $category->setHidden(0);
     $this->categoryRepository->update($category);
 }