Я работаю над новым проектом rails и использую устройство и драгоценный камень omniauth recaptcha, и я продолжаю получать это сообщение "невозможно достичь повторения"
мой код контроллера выглядит следующим образом
def create
if session[:omniauth] == nil #OmniAuth
if verify_recaptcha
super
session[:omniauth] = nil unless @user.new_record? #OmniAuth
else
build_resource
clean_up_passwords(resource)
flash[:notice] = "There was an error with the recaptcha code below. Please re-enter the code and click submit."
render_with_scope :new
end
else
super
session[:omniauth] = nil unless @user.new_record? #OmniAuth
end
end