Create api endpoint for listing user-group

This commit is contained in:
2024-04-19 15:34:16 +02:00
parent 39d701feb2
commit e2deb55fdb
4 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\MainBundle\Controller;
use Chill\MainBundle\CRUD\Controller\ApiController;
class UserGroupApiController extends ApiController {}