Update web.php

This commit is contained in:
Julian Prieber 2022-08-08 14:55:54 +02:00
parent 45a607ea33
commit edc2f548c9

View File

@ -99,6 +99,8 @@ Route::get('/studio/profile', [UserController::class, 'showProfile'])->name('sho
Route::post('/studio/profile', [UserController::class, 'editProfile'])->name('editProfile');
});
}
//Admin route
Route::group([
'middleware' => 'admin',
@ -161,6 +163,5 @@ Route::get('/updating', function (\Codedge\Updater\UpdaterManager $updater) {
});
});
}
require __DIR__.'/auth.php';