This is a continuation of this question: https://auth0.com/forum/t/redirecting-user-to-reset-password/5814
@jmangelo pointed me to an example which uses redirect rules.
Is configuration (look at the code snippet below) a built-in variable or should I define this? If I should define this, what is the value to be set for ISSUER?
var token = createToken(
configuration.CLIENT_ID,
configuration.CLIENT_SECRET,
configuration.ISSUER, {
sub: user.user_id,
email: user.email
}
);