Merge pull request #424 from listeng/master

Return json data when content-type is "application/json"
This commit is contained in:
Chris Lu 2016-12-26 02:14:09 -08:00 committed by GitHub
commit f7ff98c747

View file

@ -74,7 +74,12 @@ func (fs *FilerServer) listDirectoryHandler(w http.ResponseWriter, r *http.Reque
lastFileName,
shouldDisplayLoadMore,
}
ui.StatusTpl.Execute(w, args)
if strings.ToLower(r.Header.Get("Content-Type")) == "application/json" {
writeJsonQuiet(w, r, http.StatusOK, args)
} else {
ui.StatusTpl.Execute(w, args)
}
}
func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {