module Users class RegistrationsController < Devise::RegistrationsController # POST /resource def create build_resource(sign_up_params) resource.save yield resource if block_given? if resource.persisted? expire_data_after_sign_in! render_message else clean_up_passwords resource set_minimum_password_length respond_with resource end end def render_message msg = <<~HTML
#{I18n.t 'devise.registrations.signed_up_but_unconfirmed'}
HTML render turbo_stream: turbo_stream.update('form-signup', msg) end end end