/**
  * @param \WE\Classwork\Domain\Model\Category $category
  * @return void
  */
 public function updateAction(Category $category)
 {
     $this->categoryRepository->update($category);
     $this->addFlashMessage('Updated the category.');
     $this->redirect('index');
 }