Files
My-KOPKB/be/Modules/Auth/Actions/Fortify/RegisterResponse.php
T
2026-07-12 10:03:31 +08:00

24 lines
643 B
PHP

<?php
namespace Modules\Auth\Actions\Fortify;
use Illuminate\Http\JsonResponse;
use Laravel\Fortify\Contracts\RegisterResponse as RegisterResponseContract;
use Modules\Auth\Services\AuthSessionService;
class RegisterResponse implements RegisterResponseContract
{
public function __construct(
protected AuthSessionService $authSession,
) {}
public function toResponse($request): JsonResponse
{
return $this->authSession->createAuthResponse(
$request->user(),
'Pendaftaran berjaya. Akaun anda sedang menunggu pengaktifan daripada pentadbir sistem.',
201
);
}
}