mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-31 15:24:31 +03:00
Added bookshelf permission control UI and copy-down ability
This commit is contained in:
@ -24,6 +24,9 @@ Route::group(['middleware' => 'auth'], function () {
|
||||
Route::get('/{slug}', 'BookshelfController@show');
|
||||
Route::put('/{slug}', 'BookshelfController@update');
|
||||
Route::delete('/{slug}', 'BookshelfController@destroy');
|
||||
Route::get('/{slug}/permissions', 'BookshelfController@showRestrict');
|
||||
Route::put('/{slug}/permissions', 'BookshelfController@restrict');
|
||||
Route::post('/{slug}/copy-permissions', 'BookshelfController@copyPermissions');
|
||||
});
|
||||
|
||||
Route::get('/create-book', 'BookController@create');
|
||||
|
Reference in New Issue
Block a user