Auth middleware refinement (#11767)

* auth middleware group

* dummy page for legacy php scripts instead of recursively calling init.php

* Test and fix routing scenarios

* fix api auth

* disable unused auth routes
This commit is contained in:
Tony Murray
2020-06-05 11:50:58 -05:00
committed by GitHub
parent 6da2f43e6b
commit 5c6c8844e8
5 changed files with 51 additions and 14 deletions

View File

@@ -80,4 +80,9 @@ class LegacyController extends Controller
'refresh' => $no_refresh ? 0 : Config::get('page_refresh'),
]);
}
public function dummy()
{
return 'Dummy page';
}
}