Commit b8f5a7d5 authored by Stan Hu's avatar Stan Hu

Fix 404 error after a user edits an issue description and solves the reCAPTCHA

When editing an issue, use the PUT method instead of POST to avoid
a 404 after solving the reCAPTCHA.

Closes #41445
parent ff077cf7
- resource_name = spammable.class.model_name.singular
- humanized_resource_name = spammable.class.model_name.human.downcase
- script = local_assigns.fetch(:script, true)
- method = params[:action] == 'create' ? :post : :put
- has_submit = local_assigns.fetch(:has_submit, true)
= form_for resource_name, method: :post, html: { class: 'recaptcha-form js-recaptcha-form' } do |f|
= form_for resource_name, method: method, html: { class: 'recaptcha-form js-recaptcha-form' } do |f|
.recaptcha
- params[resource_name].each do |field, value|
= hidden_field(resource_name, field, value: value)
......
---
title: Fix 404 errors after a user edits an issue description and solves the reCAPTCHA
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment