wso2 / product-is

Welcome to the WSO2 Identity Server source code! For info on working with the WSO2 Identity Server repository and contributing code, click the link below.
http://wso2.github.io/
Apache License 2.0
748 stars 728 forks source link

Force authentication option for steps in the authentication script #10973

Closed rksk closed 1 week ago

rksk commented 3 years ago

The new functionality introduced with https://github.com/wso2/carbon-identity-framework/pull/2961 is not documented in the JS API reference.

It should be available from 5.11.0 onwards.

rksk commented 3 years ago

Example:

var onLoginRequest = function(context) {
    executeStep(1, {
        onSuccess: function(context) {

            executeStep(2, {
                stepOptions: {
                    forceAuth: 'true'
                }
            }, {});
        }
    });
};
rksk commented 2 years ago

This is available in IS 5.10.0 as well with wso2is-5.10.0.69 and wso2is-km-5.10.0.70

rksk commented 2 years ago

Needs to be added to IS 6.0 docs as well

isharak commented 1 week ago

This issue is being closed due to extended inactivity. Please feel free to reopen it if further attention is needed. Thank you for helping us keep the issue list relevant and focused!