From 4ed2513ded964eb99d460755ed2e312141426d84 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Wed, 1 Aug 2018 18:38:33 -0700 Subject: [PATCH] drop /view route that was never finished --- controllers/controllers.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/controllers/controllers.php b/controllers/controllers.php index a5fb5be..228f6fb 100644 --- a/controllers/controllers.php +++ b/controllers/controllers.php @@ -532,25 +532,6 @@ $app->get('/settings/html-content', function() use($app) { } }); -$app->get('/view', function() use($app) { - if($user=require_login($app)) { - $params = $app->request()->params(); - - $xray = new p3k\XRay(); - $result = $xray->parse($params['url']); - if(isset($result['data'])) - $entry = $result['data']; - else - $entry = []; - - render('view-post', array( - 'title' => 'View', - 'entry' => $entry, - 'authorizing' => false - )); - } -}); - function create_favorite(&$user, $url) { $tweet_id = false;