mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Overleaf CE Hotfix 2.0.1 (#126)
This commit is contained in:
parent
5159c9cc8b
commit
d29b3fa1f7
3 changed files with 35 additions and 0 deletions
13
server-ce/hotfix/2.0.1/Dockerfile
Normal file
13
server-ce/hotfix/2.0.1/Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
FROM sharelatex/sharelatex:2.0.0
|
||||||
|
|
||||||
|
|
||||||
|
# Patch 1: Fixes project deletion (https://github.com/overleaf/overleaf/issues/644)
|
||||||
|
ADD disable_project_history.patch /etc/sharelatex/disable_project_history.patch
|
||||||
|
RUN cd /etc/sharelatex && \
|
||||||
|
patch < disable_project_history.patch
|
||||||
|
|
||||||
|
|
||||||
|
# Patch 2: Fixes admin creation via CLI (https://github.com/overleaf/overleaf/issues/647)
|
||||||
|
ADD create_and_destroy_users.patch /var/www/sharelatex/tasks/create_and_destroy_users.patch
|
||||||
|
RUN cd /var/www/sharelatex/tasks/ && \
|
||||||
|
patch < create_and_destroy_users.patch
|
11
server-ce/hotfix/2.0.1/create_and_destroy_users.patch
Normal file
11
server-ce/hotfix/2.0.1/create_and_destroy_users.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- CreateAndDestoryUsers.coffee
|
||||||
|
+++ CreateAndDestoryUsers.coffee
|
||||||
|
@@ -21,7 +21,7 @@ module.exports = (grunt) ->
|
||||||
|
user.save (error) ->
|
||||||
|
throw error if error?
|
||||||
|
ONE_WEEK = 7 * 24 * 60 * 60 # seconds
|
||||||
|
- OneTimeTokenHandler.getNewToken user._id, { expiresIn: ONE_WEEK }, (err, token)->
|
||||||
|
+ OneTimeTokenHandler.getNewToken "password", { expiresIn: ONE_WEEK, email:user.email, user_id: user._id.toString() }, (err, token)->
|
||||||
|
return next(err) if err?
|
||||||
|
|
||||||
|
console.log ""
|
11
server-ce/hotfix/2.0.1/disable_project_history.patch
Normal file
11
server-ce/hotfix/2.0.1/disable_project_history.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- settings.coffee
|
||||||
|
+++ settings.coffee
|
||||||
|
@@ -200,6 +200,8 @@ settings =
|
||||||
|
# is not available
|
||||||
|
v1:
|
||||||
|
url: ""
|
||||||
|
+ project_history:
|
||||||
|
+ enabled: false
|
||||||
|
references:{}
|
||||||
|
notifications:undefined
|
||||||
|
|
Loading…
Reference in a new issue