We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab0d9b commit fcc8bf0Copy full SHA for fcc8bf0
grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/DefaultUrlMappingInfo.java
@@ -212,6 +212,13 @@ public String getId() {
212
return evaluateNameForValue(id);
213
}
214
215
+ /**
216
+ * @deprecated
217
+ * This method will be removed in a future grails version since the associated g:submitAction is being removed.
218
+ * Grails will no longer support redirecting to a different action name by adding a parameter with the prefix
219
+ * '_action'
220
+ */
221
+ @Deprecated(since = "7.0.0")
222
private String checkDispatchAction(HttpServletRequest request) {
223
if (request.getAttribute(WebUtils.EXCEPTION_ATTRIBUTE) != null || WebUtils.isForwardOrInclude(request)) {
224
return null;
0 commit comments