As you now URL its a GET method, but according
RESTful rules create it's a POST method.
Rails defines seven controller methods for RESTful resources by
convention. They are:
Action   HTTP Method  Purpose
-------------------------------------------------------------------------
index    GET          Displays a collection of resources
show     GET          Displays a single resource
new      GET          Displays a form for creating a new resource
create   POST         Creates a new resource (new submits to this)
edit     GET          Displays a form for editing an existing resource
update   PUT          Updates an existing resource (edit submits to
this)
destroy  DELETE       Destroys a single resource

You can find out it your self by:
$ rake routes


If you still want use create action by GET method you can reach it by
routes.rb file. Following links help you figure out it:
http://api.rubyonrails.org/classes/ActionController/Routing.html
http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to