Got an issue with the strapi/auth authentication.
I followed the steps (https://strapi.io/blog/strapi-authentication-in-nuxt-js ) to integrate user registration on strapi with auth. Registering and logging in works fine, but when if I want to reset the password for a given user, this gets returned on my front end:
“Incorrect params provided.”
This gets returned in the dev tools:
Failed to load resource: the server responded with a status of 400 (Bad Request)
And this on strapi:
debug POST /auth/reset-password (10 ms) 400
Also, I did enable the Public Role permission for the auth/reset-password
endpoint.
Anyone, any ideas?