You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you activate update captcha by ajax like this:
captcha_tagimage_html{update: true}
You can click captcha image or update link to get a new captcha, this will trigger a request. If you get template missing error or some others, maybe it's because your application routes override the JikeCaptcha engine route. You can try to fix it like this:
Redefine it at top of your application routes file:
# config/routes.rbMyApp::Application.routes.drawdoget'/jike_captcha/get_captcha',to: Jike::Captcha::GetCaptchaController.action(:index)# your routesend