From e62824a8f6dd3a64494e0adf1a0a2b9f70b6da4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Tue, 26 Nov 2013 13:34:53 +0100 Subject: [PATCH] [del] remove dummy code --- app/controllers/front.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/controllers/front.php b/app/controllers/front.php index c39246b..e03d7c5 100644 --- a/app/controllers/front.php +++ b/app/controllers/front.php @@ -9,11 +9,4 @@ $front->get('/', function () use ($app) { return $app['twig']->render('index.twig', array('entry' => $entry)); }); -$front->get('/unread', function () use ($app) { - - $entries = $app['entry_api']->getEntries(); - - return $app['twig']->render('index.twig', array('entry' => $entry)); -}); - return $front;