mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #11682 from overleaf/msm-fph-opt-in-sp
[CE/SP] Full Project History opt-in in SP GitOrigin-RevId: 850268b78e912550dbf9d36e61ee83c7e75e4647
This commit is contained in:
parent
89dd3b94b1
commit
064e5c9222
2 changed files with 5 additions and 2 deletions
|
@ -80,6 +80,9 @@ ENV SHARELATEX_APP_NAME "Overleaf Community Edition"
|
|||
|
||||
ENV OPTIMISE_PDF "true"
|
||||
|
||||
ENV SHARELATEX_FPH_INITIALIZE_NEW_PROJECTS "true"
|
||||
ENV SHARELATEX_FPH_DISPLAY_NEW_PROJECTS "true"
|
||||
|
||||
ENV NODE_ENV "production"
|
||||
ENV LOG_LEVEL "info"
|
||||
|
||||
|
|
|
@ -291,8 +291,8 @@ const settings = {
|
|||
},
|
||||
project_history: {
|
||||
sendProjectStructureOps: true,
|
||||
initializeHistoryForNewProjects: true,
|
||||
displayHistoryForNewProjects: true,
|
||||
initializeHistoryForNewProjects: process.env.SHARELATEX_FPH_INITIALIZE_NEW_PROJECTS === 'true',
|
||||
displayHistoryForNewProjects: process.env.SHARELATEX_FPH_DISPLAY_NEW_PROJECTS === 'true',
|
||||
url: 'http://localhost:3054',
|
||||
},
|
||||
v1_history: {
|
||||
|
|
Loading…
Reference in a new issue