Genie Discord forum

Author AvatarBouzeux
5/1/2023, 4:44:41 PM

If I do the follow and I go to "/test" I get a "Redirecting you to /" but no redirection happens, is this normal ?

    route("/test", MyController.test)

  function test()
    Genie.Renderers.redirect(:index, 200)
  end
Author AvatarBouzeux
5/1/2023, 4:58:51 PM

Ha, I found, need to return code 302 : redirect(:index, 302)