mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-12-05 17:22:06 +03:00
Sorting: Started sort set routes and form
This commit is contained in:
19
app/Sorting/SortSetController.php
Normal file
19
app/Sorting/SortSetController.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace BookStack\Sorting;
|
||||
|
||||
use BookStack\Http\Controller;
|
||||
|
||||
class SortSetController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('can:settings-manage');
|
||||
// TODO - Test
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
return view('settings.sort-sets.create');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user