Set new fields that will be used to authorize SIP transfer requests.

This commit is contained in:
alexfish8
2026-08-17 18:07:33 -07:00
parent 636214a6b0
commit 8232fb1a30
+7 -5
View File
@@ -766,11 +766,13 @@ func (s *SIPService) transferSIPParticipantRequest(ctx context.Context, req *liv
}
return &rpc.InternalTransferSIPParticipantRequest{
SipCallId: callID,
TransferTo: req.TransferTo,
PlayDialtone: req.PlayDialtone,
Headers: req.Headers,
RingingTimeout: req.RingingTimeout,
SipCallId: callID,
TransferTo: req.TransferTo,
PlayDialtone: req.PlayDialtone,
Headers: req.Headers,
RingingTimeout: req.RingingTimeout,
RoomName: req.RoomName,
ParticipantIdentity: req.ParticipantIdentity,
}, nil
}