From eeb211cdf864e3b3a949233f908da2019419fa07 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 18 Sep 2023 22:54:55 +0200 Subject: [PATCH] Update excluded functions --- app/Http/Controllers/BasePageController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/BasePageController.php b/app/Http/Controllers/BasePageController.php index 5b3e348ed..e4ffc6781 100644 --- a/app/Http/Controllers/BasePageController.php +++ b/app/Http/Controllers/BasePageController.php @@ -54,7 +54,7 @@ class BasePageController extends Controller */ public function __construct() { - $this->middleware(['auth', 'web', '2fa'])->except('api', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'apiSearch', 'tv', 'details', 'failed', 'showRssDesc', 'fullFeedRss', 'categoryFeedRss', 'cartRss', 'myMoviesRss', 'myShowsRss'); + $this->middleware(['auth', 'web', '2fa'])->except('api', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'apiSearch', 'tv', 'details', 'failed', 'showRssDesc', 'fullFeedRss', 'categoryFeedRss', 'cartRss', 'myMoviesRss', 'myShowsRss', 'release'); // Buffer settings/DB connection. $this->settings = new Settings(); $this->smarty = app('smarty.view');