I'm designing user API for devise, and want to return the user authentication_token when they login with email/password. I have the token set up but when I make POST request to users/sign_up,
curl -v -X POST -d '{"user":{"email":"test@test.com", "password":"password"}}' http://localhost:3000/users/sign_in.json --header "Content-Type: application/json"
in the response there's no authentication_token. How can I do a response with authentication_token? Which method shall I inherit/overwrite for devise login?