add rootFolder to attributes in Clsi request

This commit is contained in:
Brian Gough 2017-08-03 10:20:57 +01:00
parent 4d4cf4f693
commit 17b1075dc9

View file

@ -120,7 +120,7 @@ module.exports = ClsiManager =
VALID_COMPILERS: ["pdflatex", "latex", "xelatex", "lualatex"]
_buildRequest: (project_id, options={}, callback = (error, request) ->) ->
Project.findById project_id, {}, (error, project) ->
Project.findById project_id, {compiler: 1, rootDoc_id: 1, imageName: 1, rootFolder:1}, (error, project) ->
return callback(error) if error?
return callback(new Errors.NotFoundError("project does not exist: #{project_id}")) if !project?
console.log "PROJECT", project, JSON.stringify(project.rootFolder,null,2)