mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
add rootFolder to attributes in Clsi request
This commit is contained in:
parent
4d4cf4f693
commit
17b1075dc9
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue