mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-05 22:40: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 }
|
||||
versioning: { type:Boolean, default: Settings.defaultFeatures.versioning }
|
||||
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 : {
|
||||
github: {type: Boolean}
|
||||
|
|
|
@ -40,7 +40,7 @@ aside#left-menu.full-size(
|
|||
ng-click="openCloneProjectModal()"
|
||||
)
|
||||
i.fa.fa-fw.fa-copy
|
||||
| #{translate("copy_project")}
|
||||
| #{translate("copy_project")}
|
||||
li(ng-controller="TemplatesController", ng-show="permissions.admin")
|
||||
a(ng-click="openPublishTemplateModal()")
|
||||
i.fa.fa-external-link.fa-fw
|
||||
|
|
|
@ -131,6 +131,8 @@ module.exports =
|
|||
collaborators: -1
|
||||
dropbox: true
|
||||
versioning: true
|
||||
compileTimeout: 60
|
||||
compileGroup: "standard"
|
||||
|
||||
plans: plans = [{
|
||||
planCode: "personal"
|
||||
|
|
Loading…
Reference in a new issue