mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
more rest-dial testing
This commit is contained in:
@@ -27,8 +27,8 @@ class CallInfo {
|
||||
this.accountSid = parentCallInfo.accountSid;
|
||||
this.applicationSid = parentCallInfo.applicationSid;
|
||||
this.from = req.callingNumber;
|
||||
this.to = to || req.calledNumber;
|
||||
this.callerName = this.from.name || req.callingNumber;
|
||||
this.to = to;
|
||||
this.callerId = this.from.name || req.callingNumber;
|
||||
this.callId = req.get('Call-ID');
|
||||
this.callStatus = CallStatus.Trying,
|
||||
this.sipStatus = 100;
|
||||
@@ -70,7 +70,7 @@ class CallInfo {
|
||||
callId: this.callId,
|
||||
sipStatus: this.sipStatus,
|
||||
callStatus: this.callStatus,
|
||||
callerId: this.callId,
|
||||
callerId: this.callerId,
|
||||
accountSid: this.accountSid,
|
||||
applicationSid: this.applicationSid
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user