Michael Martinez
Michael Martinez
Thanks for bringing this to my attention. Trying to enable it now.
Can you show me an example HTTP requests that would reproduce the error? We have tests for this and they're passing. The code itself [looks right too](https://github.com/jazzband/dj-rest-auth/blob/master/dj_rest_auth/registration/serializers.py#L196-L199). It sounds like...
Pull requests are welcome 👍 . Don't forget tests.
Thanks for raising this issue. Feel free to submit a PR when you get a chance.
Anything in https://github.com/iMerica/dj-rest-auth/issues/152 ?
All done 👍 . Thank you!
I'm going to close this. Feel free to re-open if I missed something @jezdez .
The last time I considered this feature it seemed to have created more problems since browsers behave very differently. I ended up running everything through the same domain and using...
cc/ @squio
One way to solve it using a thunk: ```jsx const seeMoreFactory = (url) => { return ({close}) => { close() window.open(url, '_blank') return null } } const stories = data.map(story...