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
Now in app/view/requests/new.html.erb I have
<% form_tag @onboarding_request do |f| %>
<% f.submit “Create” %>
<%end %>
But this goes to the index action of requestscontroller not to
the create action But in the view source it is getting as method=“post”
What is the problem here..Why this not going to the create
action?Please help
Thanks in advance
Sijo