Merge pull request #3418 from nikhiljindal/swagger-ui

Fixing broken swagger-ui
This commit is contained in:
Brendan Burns 2015-01-12 16:07:49 -08:00
commit 82afbab334

View File

@ -167,8 +167,7 @@ func registerResourceHandlers(ws *restful.WebService, version string, path strin
if _, ok := storage.(RESTGetter); ok {
ws.Route(getRoute.Writes(versionedObject)) // on the response
} else {
ws.Route(ws.GET(path+"/{name}").To(h).
Returns(http.StatusMethodNotAllowed, "reading individual objects is not supported", nil))
ws.Route(getRoute.Returns(http.StatusMethodNotAllowed, "reading individual objects is not supported", nil))
}
updateRoute := ws.PUT(path + "/{name}").To(h).