I am trying to “free up” a users name. When they tried to sign up, their mail server won’t except mail from a .social Mailgun instance.
Is there anyway to just delete the user and have them start new with another address?
UPDATE
It means that you mark someone as dead! Go figure.
If you need to undo it:
RAILS_ENV=production bundle exec rails c
# in rails console.
account = Account.find_by(username: 'username', domain: nil)
account.memorial = false
account.save!