Improve documentation of list plugins 'all' option

Change-Id: I630251484ca1c8b4a4e6037ac7ee4dba78f0601a
This commit is contained in:
David Pursehouse
2017-07-28 14:13:18 +01:00
parent f48e7b05b9
commit 3b6a08a15e

View File

@@ -31,6 +31,32 @@ As result a map is returned that maps the plugin IDs to
link:#plugin-info[PluginInfo] entries. The entries in the map are sorted
by plugin ID.
.Request
----
GET /plugins/ HTTP/1.0
----
.Response
----
HTTP/1.1 200 OK
Content-Disposition: attachment
Content-Type: application/json; charset=UTF-8
)]}'
{
"delete-project": {
"id": "delete-project",
"index_url": "plugins/delete-project/",
"version": "2.9-SNAPSHOT"
}
}
----
[[plugin-options]]
==== Plugin Options
All(a)::
List all plugins including those that are disabled.
.Request
----
GET /plugins/?all HTTP/1.0