mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-23 01:12:27 +00:00
Merge pull request #252 from sharelatex/per-user-containers-part-0
Per user containers part 0
This commit is contained in:
commit
47574d7c7e
2 changed files with 3 additions and 3 deletions
|
@ -84,10 +84,8 @@ module.exports = ClsiManager =
|
|||
_parseOutputFiles: (project_id, rawOutputFiles = []) ->
|
||||
outputFiles = []
|
||||
for file in rawOutputFiles
|
||||
path = Url.parse(file.url).path
|
||||
path = path.replace("/project/#{project_id}/output/", "")
|
||||
outputFiles.push
|
||||
path: path
|
||||
path: file.path # the clsi is now sending this to web
|
||||
type: file.type
|
||||
build: file.build
|
||||
return outputFiles
|
||||
|
|
|
@ -45,10 +45,12 @@ describe "ClsiManager", ->
|
|||
status: @status = "success"
|
||||
outputFiles: [{
|
||||
url: "#{@settings.apis.clsi.url}/project/#{@project_id}/output/output.pdf"
|
||||
path: "output.pdf"
|
||||
type: "pdf"
|
||||
build: 1234
|
||||
},{
|
||||
url: "#{@settings.apis.clsi.url}/project/#{@project_id}/output/output.log"
|
||||
path: "output.log"
|
||||
type: "log"
|
||||
build: 1234
|
||||
}]
|
||||
|
|
Loading…
Reference in a new issue