mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Add migration to enable trackChanges for all users
This commit is contained in:
31
server-ce/migrations/6_add_track_changes_feature.coffee
Normal file
31
server-ce/migrations/6_add_track_changes_feature.coffee
Normal file
@@ -0,0 +1,31 @@
|
||||
Settings = require "settings-sharelatex"
|
||||
fs = require("fs")
|
||||
mongojs = require("mongojs")
|
||||
ObjectId = mongojs.ObjectId
|
||||
db = mongojs(Settings.mongo.url, ['users'])
|
||||
_ = require("underscore")
|
||||
BSON = db.bson.BSON
|
||||
|
||||
|
||||
handleExit = () ->
|
||||
console.log('Got signal. Shutting down.')
|
||||
|
||||
|
||||
process.on 'SIGINT', handleExit
|
||||
process.on 'SIGHUP', handleExit
|
||||
|
||||
|
||||
exports.migrate = (client, done=()->) ->
|
||||
patch = {
|
||||
$set: {
|
||||
'features.trackChanges': true
|
||||
}
|
||||
}
|
||||
console.log ">> enabling trackChanges feature: ", patch
|
||||
db.users.update {}, patch, {multi: true}, (err) ->
|
||||
console.log "finished enabling trackChanges feature"
|
||||
return done(err)
|
||||
|
||||
|
||||
exports.rollback = (client, done) ->
|
||||
done()
|
||||
Reference in New Issue
Block a user