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
Unfortunately, the increasingly common Post/Redirect/Get (PRG) http://en.wikipedia.org/wiki/Post/Redirect/Get pattern, where a redirect will be returned from a post to avoid the risk of POST duplication doesn't work.
In this case, the redirect should use a GET as usual after the POST has returned the redirect. Would you consider, perhaps, a flag to override this default behavior?
The text was updated successfully, but these errors were encountered:
Line 251 of main.js has
self.method !== 'POST' &&
as a condition to the redirect.
Unfortunately, the increasingly common Post/Redirect/Get (PRG) http://en.wikipedia.org/wiki/Post/Redirect/Get pattern, where a redirect will be returned from a post to avoid the risk of POST duplication doesn't work.
In this case, the redirect should use a GET as usual after the POST has returned the redirect. Would you consider, perhaps, a flag to override this default behavior?
The text was updated successfully, but these errors were encountered: