rails-no-render-after-save
Found a call to render $T
after calling $T.save
. Do not call render
after calling save
on an ActiveRecord object. Reloading the page will cause the state-changing operation to be repeated which may cause undesirable side effects. Use redirect_to
instead.
rails-no-render-after-save
Found a call to render $T
after calling $T.save
. Do not call render
after calling save
on an ActiveRecord object. Reloading the page will cause the state-changing operation to be repeated which may cause undesirable side effects. Use redirect_to
instead.