Hi,
I’m migrating from Rules to Action Flows.
Now I’m completely stuck with migrating the following Rule code:
function (user, context, callback) {
// some SAML mapping here
//...
context.samlConfiguration.RelayState = "Some Relay State";
callback(null, user, context);
}
I can’t find any working way to set RelayState parameter that should be returned with SAMLResponse.
Is this even possible with Actions?
Thanks.