Merge branch 'master' into draw.io to fetch auth image changes

This commit is contained in:
Dan Brown
2018-01-20 14:06:44 +00:00
8 changed files with 67 additions and 44 deletions

View File

@ -5,6 +5,9 @@ Route::get('/translations', 'HomeController@getTranslations');
// Authenticated routes...
Route::group(['middleware' => 'auth'], function () {
Route::get('/uploads/images/{path}', 'ImageController@showImage')
->where('path', '.*$');
Route::group(['prefix' => 'pages'], function() {
Route::get('/recently-created', 'PageController@showRecentlyCreated');
Route::get('/recently-updated', 'PageController@showRecentlyUpdated');