Description
add bitrix24UserId in method findByMemberId in Bitrix24AccountRepository
Example
before
$accounts = $this->bitrix24AccountRepository->findByMemberId(
$command->renewedAuthToken->memberId,
Bitrix24AccountStatus::active
);
after
$accounts = $this->bitrix24AccountRepository->findByMemberId(
$command->renewedAuthToken->memberId,
Bitrix24AccountStatus::active,
$command->b24UserId
);