func (c *ContentController) handleFileDELETE(f *model.VersionedFile, e *httpapp.Env) *httpapp.Response {
	f.Remove()
	c.commitChanges(f, e)
	return httpapp.NewResponse(http.StatusNoContent)
}