Added flag to disable URL file linking (#2316)

GitOrigin-RevId: c178d2d629b361534d1b96bf80de015a72ab2047
This commit is contained in:
Miguel Serrano 2019-11-06 10:52:15 +01:00 committed by sharelatex
parent 28fd277172
commit 35632da051
2 changed files with 8 additions and 5 deletions

View file

@ -53,6 +53,8 @@ module.exports = Features = {
return Settings.apis.references.url != null
case 'saml':
return Settings.enableSaml
case 'link-url':
return Settings.apis.linkedUrlProxy && Settings.apis.linkedUrlProxy.url
default:
throw new Error(`unknown feature: ${feature}`)
}

View file

@ -21,11 +21,12 @@ script(type='text/ng-template', id='newFileModalTemplate')
i.fa.fa-fw.fa-folder-open
|
| From Another Project
li(ng-class="type == 'url' ? 'active' : null")
a(href, ng-click="type = 'url'")
i.fa.fa-fw.fa-globe
|
| From External URL
if hasFeature('link-url')
li(ng-class="type == 'url' ? 'active' : null")
a(href, ng-click="type = 'url'")
i.fa.fa-fw.fa-globe
|
| From External URL
!= moduleIncludes("newFileModal:selector", locals)
td(class="modal-new-file--body modal-new-file--body-{{type}}")