diff --git a/src/Skobkin/Bundle/PointToolsBundle/Controller/PostController.php b/src/Skobkin/Bundle/PointToolsBundle/Controller/PostController.php index 2022d2e..147d9f7 100644 --- a/src/Skobkin/Bundle/PointToolsBundle/Controller/PostController.php +++ b/src/Skobkin/Bundle/PointToolsBundle/Controller/PostController.php @@ -17,6 +17,10 @@ class PostController extends AbstractController */ public function showAction(Post $post, PostRepository $postRepository): Response { + if ((!$post->getAuthor()->isPublic()) || $post->getAuthor()->isWhitelistOnly()) { + throw $this->createNotFoundException('Author\'s blog is private.'); + } + return $this->render('SkobkinPointToolsBundle:Post:show.html.twig', [ 'post' => $postRepository->getPostWithComments($post->getId()), ]);