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

Enabled custom HTML head content to work within editors

Closes #562
This commit is contained in:
Dan Brown
2017-12-08 11:52:43 +00:00
parent 56d5af1336
commit d7edc389a6
6 changed files with 35 additions and 5 deletions

View File

@ -135,6 +135,7 @@ Route::group(['middleware' => 'auth'], function () {
// Other Pages
Route::get('/', 'HomeController@index');
Route::get('/home', 'HomeController@index');
Route::get('/custom-head-content', 'HomeController@customHeadContent');
// Settings
Route::group(['prefix' => 'settings'], function() {