mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-22 22:59:58 +08:00
Added initial settings interface, Fixes #9.
This commit is contained in:
@ -71,6 +71,10 @@ Route::group(['middleware' => 'auth'], function () {
|
||||
Route::get('/', 'HomeController@index');
|
||||
Route::get('/home', 'HomeController@index');
|
||||
|
||||
// Settings
|
||||
Route::get('/settings', 'SettingController@index');
|
||||
Route::post('/settings', 'SettingController@update');
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user