mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-23 01:12:27 +00:00
use path attribute sent back by clsi
This commit is contained in:
parent
a5aab40320
commit
5be1886d43
2 changed files with 3 additions and 3 deletions
|
@ -75,10 +75,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
|
||||
|
|
|
@ -42,10 +42,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