diff options
| author | Ziad Sawalha <github@highbridgellc.com> | 2011-08-23 13:28:40 -0500 |
|---|---|---|
| committer | Ziad Sawalha <github@highbridgellc.com> | 2011-08-23 13:28:40 -0500 |
| commit | 2a7181cc2405dc8ee9bb7ef0ed0ea6d846c76735 (patch) | |
| tree | 90a8ab9f242c5b2fcd0051f96ecc7f1920fec1b5 | |
| parent | 628717483738144e1c0c4b4f6b8bd24d1242f591 (diff) | |
Fixed error where endpoints returned for tenant instead of token
Change-Id: I40a6e2e3c0c95ca2b9968ec2ae2f95a2454cfa94
| -rw-r--r-- | keystone/content/admin/identity-admin.wadl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/keystone/content/admin/identity-admin.wadl b/keystone/content/admin/identity-admin.wadl index d57dbcd3..492916c9 100644 --- a/keystone/content/admin/identity-admin.wadl +++ b/keystone/content/admin/identity-admin.wadl @@ -51,6 +51,9 @@ <param name="belongsTo" style="query" type="xsd:string" required="false"/> <method href="#validateToken"/> <method href="#checkToken"/> + <resource id="endpointsForToken" path="endpoints"> + <method href="#listEndpointsForToken"/> + </resource> </resource> </resource> @@ -76,10 +79,6 @@ <param name="tenantId" style="template" type="xsd:string"/> <method href="#getTenant"/> - <resource id="endpointsForTenant" path="endpoints"> - <method href="#listEndpointsForTenant"/> - </resource> - <resource id="usersForTenant" path="users"> <resource id="getTenantUser" path="{user_id}"> <param name="user_id" style="template" type="xsd:string"/> @@ -314,10 +313,10 @@ &commonFaults; &getFaults; </method> - <method name="GET" id="getEndpointsForTenant"> - <doc xml:lang="EN" title="/tenants/{tenant_id}/endpoints"> + <method name="GET" id="listEndpointsForToken"> + <doc xml:lang="EN" title="/tokens/{token_id}/endpoints"> <p xmlns="http://www.w3.org/1999/xhtml"> - Returns a list of endpoints associated with a specific tenant. + Returns a list of endpoints associated with a specific token. </p> </doc> <response status="200 203"> |
