class DeviseExtensions::RegistrationsController < Devise::RegistrationsController # POST /resource def create build_resource(params[:user]) captcha_verified = if Rails.env == 'development' || Rails.env == 'production' verify_recaptcha(model: resource, message: I18n.t('general.exceptions.wrong_recaptcha')) else true end resource.save if captcha_verified yield resource if block_given? if resource.persisted? if resource.active_for_authentication? set_flash_message :notice, :signed_up if is_flashing_format? sign_up(resource_name, resource) respond_with resource, location: after_sign_up_path_for(resource) else set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}" if is_flashing_format? expire_data_after_sign_in! respond_with resource, location: after_inactive_sign_up_path_for(resource) end else clean_up_passwords resource set_minimum_password_length respond_with resource end end end