i am not able to see the flows section directly ,it is inside forms how to add custom action which i created to login i am not able to see login/post login to add my custom action to the flow because of which i am not able to add my custom action and i am not able to add custom claims
Hi @char,
To see the Flow sections directly, you must go to your Auth0 Dashboard > Actions > Forms and select the Flows tab on the top navigation bar. See screenshot below:
After the flow is added inside a form, you can use a custom action to render the Form which includes the custom flow you created.
For example:
// Example using the post-login trigger
exports.onExecutePostLogin = async (event, api) => {
api.prompt.render(':form_id');
}
exports.onContinuePostLogin = async (event, api) => {
// Add your logic after completing the form
}
(Reference: Render Forms using Actions)
This way, your post-login action can render the Form with a specific flow during the authentication flow.
Let me know if you have any questions on this.
Thanks,
Rueben
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.