Properly handle rss feeds

This commit is contained in:
DariusIII
2019-02-25 13:00:24 +01:00
parent e0bdc6eab0
commit 5bd1283d30
6 changed files with 36 additions and 47 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class BasePageController extends Controller
*/
public function __construct()
{
$this->middleware(['auth', 'web'])->except('api', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'apiSearch', 'tv', 'details', 'failed', 'showRssDesc', 'feedRss', 'categoryRss', 'cartRss', 'myMoviesRss', 'myShowsRss');
$this->middleware(['auth', 'web'])->except('api', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'apiSearch', 'tv', 'details', 'failed', 'showRssDesc', 'fullFeedRss', 'categoryFeedRss', 'cartRss', 'myMoviesRss', 'myShowsRss');
// Buffer settings/DB connection.
$this->settings = new Settings();
$this->smarty = app('smarty.view');