mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 16:22:14 +00:00
Shared link expiration backend
Redirect from sign in page when user is logged Updated README.md
This commit is contained in:
@@ -32,10 +32,16 @@ Route::group(['middleware' => ['auth:api', 'auth.shared', 'auth.master', 'scope:
|
||||
Route::get('/file/{name}', 'FileAccessController@get_file')->name('file');
|
||||
});
|
||||
|
||||
// Get user invoice
|
||||
Route::group(['middleware' => ['auth:api', 'auth.master', 'scope:master']], function () {
|
||||
Route::get('/invoice/{customer}/{token}', 'Admin\InvoiceController@show');
|
||||
});
|
||||
|
||||
// Admin system tools
|
||||
Route::group(['middleware' => ['auth:api', 'auth.master', 'auth.admin', 'scope:master']], function () {
|
||||
Route::get('/upgrade-database', 'General\UpgradeAppController@upgrade_database');
|
||||
});
|
||||
|
||||
// Get og site for web crawlers
|
||||
if( Crawler::isCrawler()) {
|
||||
Route::get('/shared/{token}', 'AppFunctionsController@og_site');
|
||||
|
||||
Reference in New Issue
Block a user