mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #416 from sharelatex/ja-include-track-changes-feature
Add track changes feature flag into model
This commit is contained in:
commit
644e45c4b9
2 changed files with 2 additions and 0 deletions
|
@ -37,6 +37,7 @@ UserSchema = new Schema
|
||||||
compileGroup: { type:String, default: Settings.defaultFeatures.compileGroup }
|
compileGroup: { type:String, default: Settings.defaultFeatures.compileGroup }
|
||||||
templates: { type:Boolean, default: Settings.defaultFeatures.templates }
|
templates: { type:Boolean, default: Settings.defaultFeatures.templates }
|
||||||
references: { type:Boolean, default: Settings.defaultFeatures.references }
|
references: { type:Boolean, default: Settings.defaultFeatures.references }
|
||||||
|
trackChanges: { type:Boolean, default: Settings.defaultFeatures.trackChanges }
|
||||||
}
|
}
|
||||||
featureSwitches : {
|
featureSwitches : {
|
||||||
track_changes: { type: Boolean }
|
track_changes: { type: Boolean }
|
||||||
|
|
|
@ -179,6 +179,7 @@ module.exports = settings =
|
||||||
compileGroup: "standard"
|
compileGroup: "standard"
|
||||||
references: true
|
references: true
|
||||||
templates: true
|
templates: true
|
||||||
|
trackChanges: true
|
||||||
|
|
||||||
plans: plans = [{
|
plans: plans = [{
|
||||||
planCode: "personal"
|
planCode: "personal"
|
||||||
|
|
Loading…
Reference in a new issue