Skip to content

Commit

Permalink
fix for ZLUX SSO
Browse files Browse the repository at this point in the history
  • Loading branch information
jandadav authored and JirkaAichler committed May 31, 2019
1 parent 67ca33a commit cb9bacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apiml-auth/lib/tokenInjector.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const express = require('express');
module.exports = pluginContext => {
const r = express.Router();
r.get('/**', (req, res) => {
const apimlSession = req.session['org.zowe.zlux.auth.apiml'];
const apimlSession = req.session.authPlugins['org.zowe.zlux.auth.apiml'];
if (apimlSession === undefined) {
res.status(401).send("Missing APIML authentication token in zLUX session");
}
Expand Down

0 comments on commit cb9bacb

Please sign in to comment.