Watching lectures on rails, the question arose:
Here, for example, juzver sent such a request:
http://exmaple.com/find/?id[id]=1&id[hacker]=awesome_hacker while I write in the Users.find(params.id) code Users.find(params.id) , then all parameters will be passed to the model.
How to avoid it? If I write User.find(params.require(:id)) , nothing will change.