From 2fc0a8873c4db4c0dc24b8ef9e84e1f2d68c454d Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Wed, 16 Oct 2013 14:02:06 +0000 Subject: [PATCH] Clarify documentation for channel and bridge list 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 --- res/ari/resource_bridges.h | 2 +- res/ari/resource_channels.h | 2 +- rest-api/api-docs/bridges.json | 2 +- rest-api/api-docs/channels.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/res/ari/resource_bridges.h b/res/ari/resource_bridges.h index 5733171224..abb372c1a0 100644 --- a/res/ari/resource_bridges.h +++ b/res/ari/resource_bridges.h @@ -43,7 +43,7 @@ struct ast_get_bridges_args { }; /*! - * \brief List active bridges. + * \brief List all active bridges in Asterisk. * * \param headers HTTP headers * \param args Swagger parameters diff --git a/res/ari/resource_channels.h b/res/ari/resource_channels.h index 699424efdc..b7f1ef282f 100644 --- a/res/ari/resource_channels.h +++ b/res/ari/resource_channels.h @@ -43,7 +43,7 @@ struct ast_get_channels_args { }; /*! - * \brief List active channels. + * \brief List all active channels in Asterisk. * * \param headers HTTP headers * \param args Swagger parameters diff --git a/rest-api/api-docs/bridges.json b/rest-api/api-docs/bridges.json index ec7cdaefc0..819c777db4 100644 --- a/rest-api/api-docs/bridges.json +++ b/rest-api/api-docs/bridges.json @@ -13,7 +13,7 @@ "operations": [ { "httpMethod": "GET", - "summary": "List active bridges.", + "summary": "List all active bridges in Asterisk.", "nickname": "getBridges", "responseClass": "List[Bridge]" }, diff --git a/rest-api/api-docs/channels.json b/rest-api/api-docs/channels.json index eeb56a5c64..40ccda7404 100644 --- a/rest-api/api-docs/channels.json +++ b/rest-api/api-docs/channels.json @@ -13,7 +13,7 @@ "operations": [ { "httpMethod": "GET", - "summary": "List active channels.", + "summary": "List all active channels in Asterisk.", "nickname": "getChannels", "responseClass": "List[Channel]" },