Skip to content
Snippets Groups Projects
Commit 385af4b3 authored by Tibo's avatar Tibo
Browse files

require user authentication

parent 0d4136e2
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,9 @@ Route::get('/', function () {
Auth::routes(['register' => false]);
Route::prefix('app')->group(function () {
Route::prefix('app')
->middleware('auth')
->group(function () {
Route::get('status', 'MarkController@status')->name('status');
Route::get('pause', 'MarkController@pause')->name('pause');
Route::get('resume', 'MarkController@resume')->name('resume');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment