* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Flarum\Api\Controller; use Flarum\Core\Command\CreateGroup; use Illuminate\Contracts\Bus\Dispatcher; use Psr\Http\Message\ServerRequestInterface; use Tobscure\JsonApi\Document; class CreateGroupController extends AbstractCreateController { /** * {@inheritdoc} */ public $serializer = 'Flarum\Api\Serializer\GroupSerializer'; /** * @var Dispatcher */ protected $bus; /** * @param Dispatcher $bus */ public function __construct(Dispatcher $bus) { $this->bus = $bus; } /** * {@inheritdoc} */ protected function data(ServerRequestInterface $request, Document $document) { return $this->bus->dispatch( new CreateGroup($request->getAttribute('actor'), array_get($request->getParsedBody(), 'data', [])) ); } }