Exclude ApiV2 functions from auth middleware in BasePageController

This commit is contained in:
DariusIII
2018-12-18 22:00:26 +01:00
parent cbe40f0401
commit 39cfbbc90d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ class BasePageController extends Controller
*/
public function __construct()
{
$this->middleware('auth')->except('api', 'rss', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms');
$this->middleware('auth')->except('api', 'rss', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'search', 'tv', 'details');
// Buffer settings/DB connection.
$this->settings = new Settings();
$this->smarty = app('smarty.view');