1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Started rolling out user slugs to model and core controllers

This commit is contained in:
Dan Brown
2021-03-09 23:06:12 +00:00
parent 3a9caea846
commit 19d79b6a0f
8 changed files with 67 additions and 29 deletions

View File

@ -99,7 +99,7 @@ Route::group(['middleware' => 'auth'], function () {
});
// User Profile routes
Route::get('/user/{userId}', 'UserController@showProfilePage');
Route::get('/user/{slug}', 'UserProfileController@show');
// Image routes
Route::get('/images/gallery', 'Images\GalleryImageController@list');