mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Add compiler and imageName to export API request
This commit is contained in:
parent
3cf060dbac
commit
ddbe1a5b22
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue