mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
20 lines
608 B
CoffeeScript
20 lines
608 B
CoffeeScript
Settings = require 'settings-sharelatex'
|
|
|
|
module.exports = Features =
|
|
externalAuthenticationSystemUsed: ->
|
|
Settings.ldap? or Settings.saml? or Settings.overleaf?.oauth?
|
|
|
|
hasFeature: (feature) ->
|
|
switch feature
|
|
when 'homepage'
|
|
return Settings.enableHomepage
|
|
when 'registration'
|
|
return not Features.externalAuthenticationSystemUsed()
|
|
when 'github-sync'
|
|
return Settings.enableGithubSync
|
|
when 'v1-return-message'
|
|
return Settings.accountMerge? and Settings.overleaf?
|
|
when 'rich-text'
|
|
return Settings.showRichText
|
|
else
|
|
throw new Error("unknown feature: #{feature}")
|