mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-06 07:13:58 +00:00
Merge branch 'master' of https://github.com/sharelatex/web-sharelatex
This commit is contained in:
commit
2538d16e63
3 changed files with 6 additions and 1 deletions
|
@ -31,6 +31,9 @@ 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 }
|
||||||
|
github: { type:Boolean, default: Settings.defaultFeatures.github }
|
||||||
|
compileTimeout: { type:Number, default: Settings.defaultFeatures.compileTimeout }
|
||||||
|
compileGroup: { type:String, default: Settings.defaultFeatures.compileGroup }
|
||||||
}
|
}
|
||||||
featureSwitches : {
|
featureSwitches : {
|
||||||
github: {type: Boolean}
|
github: {type: Boolean}
|
||||||
|
|
|
@ -40,7 +40,7 @@ aside#left-menu.full-size(
|
||||||
ng-click="openCloneProjectModal()"
|
ng-click="openCloneProjectModal()"
|
||||||
)
|
)
|
||||||
i.fa.fa-fw.fa-copy
|
i.fa.fa-fw.fa-copy
|
||||||
| #{translate("copy_project")}
|
| #{translate("copy_project")}
|
||||||
li(ng-controller="TemplatesController", ng-show="permissions.admin")
|
li(ng-controller="TemplatesController", ng-show="permissions.admin")
|
||||||
a(ng-click="openPublishTemplateModal()")
|
a(ng-click="openPublishTemplateModal()")
|
||||||
i.fa.fa-external-link.fa-fw
|
i.fa.fa-external-link.fa-fw
|
||||||
|
|
|
@ -131,6 +131,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