overleaf/services/web/app/coffee/infrastructure/Features.coffee
2017-11-22 10:44:57 +00:00

14 lines
416 B
CoffeeScript

Settings = require 'settings-sharelatex'
module.exports = Features =
externalAuthenticationSystemUsed: ->
Settings.ldap? or Settings.saml? or Settings.overleaf?.oauth?
hasFeature: (feature) ->
switch feature
when 'registration'
return not Features.externalAuthenticationSystemUsed()
when 'github-sync'
return Settings.enableGithubSync
else
throw new Error("unknown feature: #{feature}")