mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
ari: Remove support for specifying channel vars during origination.
When we added support for specifying channel variables for an origination, we didn't consider how that would interact with another feature, namely specifying request parameters in a JSON request body. The method of specifying channel variables (as a flat JSON object passed in the JSON body) interferes with parsing parameters out of the request body. Unfortunately, fixing this would be a backward incompatible change. In the interest of keeping the API sane and keeping our release schedule, we're dropping the feature for specifying channel variables in the origination request. We will bring the feature back soon, as a backward compatible addition to the API. (closes issue ASTERISK-23051) Review: https://reviewboard.asterisk.org/r/3088 ........ Merged revisions 404509 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@404512 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -107,7 +107,7 @@
|
||||
},
|
||||
{
|
||||
"name": "eventSource",
|
||||
"description": "URI for event source (channel:{channelId}, bridge:{bridgeId}, endpoint:{tech}/{resource}, device_state:{deviceName}",
|
||||
"description": "URI for event source (channel:{channelId}, bridge:{bridgeId}, endpoint:{tech}/{resource}, deviceState:{deviceName}",
|
||||
"paramType": "query",
|
||||
"required": true,
|
||||
"allowMultiple": true,
|
||||
|
@@ -88,14 +88,6 @@
|
||||
"allowMultiple": false,
|
||||
"dataType": "int",
|
||||
"defaultValue": 30
|
||||
},
|
||||
{
|
||||
"name": "variables",
|
||||
"description": "Variables to be set on the channel.",
|
||||
"paramType": "body",
|
||||
"required": false,
|
||||
"allowMultiple": false,
|
||||
"dataType": "containers"
|
||||
}
|
||||
],
|
||||
"errorResponses": [
|
||||
|
Reference in New Issue
Block a user