Add compiler and imageName to export API request

This commit is contained in:
Michael Mazour 2018-07-27 15:42:37 +01:00
parent 3cf060dbac
commit ddbe1a5b22
2 changed files with 11 additions and 0 deletions

View file

@ -57,6 +57,9 @@ module.exports = ExportsHandler = self =
historyId: project.overleaf?.history?.id
historyVersion: historyVersion
v1ProjectId: project.overleaf?.id
metadata:
compiler: project.compiler
imageName: project.imageName
user:
id: user_id
firstName: user.first_name

View file

@ -63,6 +63,8 @@ describe 'ExportsHandler', ->
beforeEach (done) ->
@project =
id: @project_id
compiler: 'pdflatex'
imageName: 'mock-image-name'
overleaf:
id: @project_history_id # for projects imported from v1
history:
@ -100,6 +102,9 @@ describe 'ExportsHandler', ->
historyId: @project_history_id
historyVersion: @historyVersion
v1ProjectId: @project_history_id
metadata:
compiler: 'pdflatex'
imageName: 'mock-image-name'
user:
id: @user_id
firstName: @user.first_name
@ -132,6 +137,9 @@ describe 'ExportsHandler', ->
historyId: @project_history_id
historyVersion: @historyVersion
v1ProjectId: @project_history_id
metadata:
compiler: 'pdflatex'
imageName: 'mock-image-name'
user:
id: @user_id
firstName: @custom_first_name