This makes it clear that the ARI API calls for listing channels and
bridges will list all channels or bridges in the system and not just
those that are in or are controlled by a Stasis application.
(closes issue ASTERISK-22635)
Reported by: Kevin Harwell
........
Merged revisions 401087 from http://svn.asterisk.org/svn/asterisk/branches/12
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@401088
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
struct ast_get_bridges_args {
};
/*!
- * \brief List active bridges.
+ * \brief List all active bridges in Asterisk.
*
* \param headers HTTP headers
* \param args Swagger parameters
struct ast_get_channels_args {
};
/*!
- * \brief List active channels.
+ * \brief List all active channels in Asterisk.
*
* \param headers HTTP headers
* \param args Swagger parameters
"operations": [
{
"httpMethod": "GET",
- "summary": "List active bridges.",
+ "summary": "List all active bridges in Asterisk.",
"nickname": "getBridges",
"responseClass": "List[Bridge]"
},
"operations": [
{
"httpMethod": "GET",
- "summary": "List active channels.",
+ "summary": "List all active channels in Asterisk.",
"nickname": "getChannels",
"responseClass": "List[Channel]"
},