From 6c381b127c1844ed29539d41cb929f9879ffdf33 Mon Sep 17 00:00:00 2001 From: Shane Kilkelly Date: Mon, 14 Nov 2016 13:33:48 +0000 Subject: [PATCH] Count saml as an external authentication system. --- services/web/app/coffee/infrastructure/ExpressLocals.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/app/coffee/infrastructure/ExpressLocals.coffee b/services/web/app/coffee/infrastructure/ExpressLocals.coffee index c699332f46..e469df9422 100644 --- a/services/web/app/coffee/infrastructure/ExpressLocals.coffee +++ b/services/web/app/coffee/infrastructure/ExpressLocals.coffee @@ -210,7 +210,7 @@ module.exports = (app, webRouter, apiRouter)-> webRouter.use (req, res, next)-> res.locals.externalAuthenticationSystemUsed = -> - Settings.ldap? + Settings.ldap? or Settings.saml? next() webRouter.use (req, res, next)->