mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 05:47:11 +02:00
Implemented draft for CRUD management
This commit is contained in:
@@ -5,14 +5,20 @@ namespace App\Controller\API\Meta;
|
||||
use App\Controller\API\AbstractAPIController;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
* @todo Implement!
|
||||
*/
|
||||
class RightApiController extends AbstractAPIController
|
||||
{
|
||||
public function read(Request $request, $identifier): Response
|
||||
{
|
||||
}
|
||||
|
||||
public function create(Request $request): Response
|
||||
public function create(Request $request, SecureCRUDFactoryService $crudFactory): Response
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user