1
0
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:
Dan Brown
2025-02-03 16:48:57 +00:00
parent a34023f715
commit bf8a84a8b1
7 changed files with 182 additions and 6 deletions

View 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');
}
}