Hi
I have created a model Request and after that created the controller
for that with the name Request .I have also added in routes.rb
map.resources :reuests
1. Request is a reserved word in Rails; you must choose another name
for your model.
2. If you're using RESTful controllers (as Rails scaffolding does by
default) then your forms will POST to the plural form of your model,
for example a Blog would POST to /blogs to create. Rails controllers
understand the REST verbs.