mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add in compile timeout and group feature options
This commit is contained in:
parent
cfb3969b88
commit
5edefe2498
2 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,8 @@ UserSchema = new Schema
|
|||
collaborators: { type:Number, default: Settings.defaultFeatures.collaborators }
|
||||
versioning: { type:Boolean, default: Settings.defaultFeatures.versioning }
|
||||
dropbox: { type:Boolean, default: Settings.defaultFeatures.dropbox }
|
||||
compileTimeout: { type:Number, default: Settings.defaultFeatures.compileTimeout }
|
||||
compileGroup: { type:String, default: Settings.defaultFeatures.compileGroup }
|
||||
}
|
||||
featureSwitches : {
|
||||
github: {type: Boolean}
|
||||
|
|
|
@ -130,6 +130,8 @@ module.exports =
|
|||
collaborators: -1
|
||||
dropbox: true
|
||||
versioning: true
|
||||
compileTimeout: 60
|
||||
compileGroup: "standard"
|
||||
|
||||
plans: plans = [{
|
||||
planCode: "personal"
|
||||
|
|
Loading…
Reference in a new issue