How to add additional routes to restful rails controllers

In your controller file

  def test_email
	...#content here
  end

In your routes.rb file

map.resources :flowers, :collection => { :test_email => :get}

Comments