I am new to Rails and am writing a registration form. I used form_tag to pass the user view to the account controller. Now I don’t want the user to be able to enter their login information through a GET request, so how can I verify that a specific parameter is either a GET parameter or a POST?
Thanks in advance
source
share