feat(templates): introduce templates management (#2017)

This commit is contained in:
Anthony Lapenna
2018-07-03 20:31:02 +02:00
committed by GitHub
parent e7939a5384
commit 61c285bd2e
63 changed files with 3489 additions and 637 deletions

View File

@@ -54,5 +54,5 @@ func (handler *Handler) stackFile(w http.ResponseWriter, r *http.Request) *httpe
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve Compose file from disk", err}
}
return response.JSON(w, &stackFileResponse{StackFileContent: stackFileContent})
return response.JSON(w, &stackFileResponse{StackFileContent: string(stackFileContent)})
}