1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-04 10:55:47 +00:00

Replace ShareLaTeX with Overleaf in name of multiple project download file (Closes: )

This commit is contained in:
Christopher Hoskin 2018-09-24 16:33:54 +01:00
parent ce6405d5b1
commit 5c35cc9593
2 changed files with 2 additions and 2 deletions
services/web
app/coffee/Features/Downloads
test/unit/coffee/Downloads

View file

@ -32,7 +32,7 @@ module.exports = ProjectDownloadsController =
return next(error) if error?
res.setContentDisposition(
'attachment',
{filename: "ShareLaTeX Projects (#{project_ids.length} items).zip"}
{filename: "Overleaf Projects (#{project_ids.length} items).zip"}
)
res.contentType('application/zip')
stream.pipe(res)

View file

@ -112,7 +112,7 @@ describe "ProjectDownloadsController", ->
@res.setContentDisposition
.calledWith(
'attachment',
{filename: "ShareLaTeX Projects (2 items).zip"})
{filename: "Overleaf Projects (2 items).zip"})
.should.equal true
it "should record the action via Metrics", ->