mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 01:23:47 -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 }
|
collaborators: { type:Number, default: Settings.defaultFeatures.collaborators }
|
||||||
versioning: { type:Boolean, default: Settings.defaultFeatures.versioning }
|
versioning: { type:Boolean, default: Settings.defaultFeatures.versioning }
|
||||||
dropbox: { type:Boolean, default: Settings.defaultFeatures.dropbox }
|
dropbox: { type:Boolean, default: Settings.defaultFeatures.dropbox }
|
||||||
|
compileTimeout: { type:Number, default: Settings.defaultFeatures.compileTimeout }
|
||||||
|
compileGroup: { type:String, default: Settings.defaultFeatures.compileGroup }
|
||||||
}
|
}
|
||||||
featureSwitches : {
|
featureSwitches : {
|
||||||
github: {type: Boolean}
|
github: {type: Boolean}
|
||||||
|
|
|
@ -130,6 +130,8 @@ module.exports =
|
||||||
collaborators: -1
|
collaborators: -1
|
||||||
dropbox: true
|
dropbox: true
|
||||||
versioning: true
|
versioning: true
|
||||||
|
compileTimeout: 60
|
||||||
|
compileGroup: "standard"
|
||||||
|
|
||||||
plans: plans = [{
|
plans: plans = [{
|
||||||
planCode: "personal"
|
planCode: "personal"
|
||||||
|
|
Loading…
Reference in a new issue