Skip to content

Commit

Permalink
Fix ref to zoweconf
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <sgrady@rocketsoftware.com>
  • Loading branch information
1000TurquoisePogs committed Apr 9, 2024
1 parent 257ec95 commit b956f2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/sso-auth/lib/ssoAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function SsoAuthenticator(pluginDef, pluginConf, serverConf, context) {
this.logger = context.logger;
this.categories = ['saf'];
if (this.usingApiml) {
this.apimlHandler = apimlHandlerFactory(pluginDef, pluginConf, serverConf, context);
this.apimlHandler = apimlHandlerFactory(pluginDef, pluginConf, serverConf, context, zoweConf);
this.categories.push('apiml');
}

Expand Down Expand Up @@ -325,6 +325,6 @@ SsoAuthenticator.prototype = {
}
};

module.exports = function (pluginDef, pluginConf, serverConf, context) {
return Promise.resolve(new SsoAuthenticator(pluginDef, pluginConf, serverConf, context));
module.exports = function (pluginDef, pluginConf, serverConf, context, zoweConf) {
return Promise.resolve(new SsoAuthenticator(pluginDef, pluginConf, serverConf, context, zoweConf));
}

0 comments on commit b956f2b

Please sign in to comment.