Hello I do some tests with `solidus_auth_devise` (...
# support
s
Hello I do some tests with
solidus_auth_devise
(2.5.4) when I delete a user (from admin panel) and I try to register a new user with the same email I get the error "Email is already in use" whereas the user no longer exists in
Spree::User
w
solidus_auth_devise uses Discard, so records are soft-deleted. You’ll need to call
#delete
instead of
#discard
for that.
I now saw https://github.com/solidusio/solidus/discussions/4643. Feel free to open a bug report.
👍 1