I have a controller called form_questions_answers
with a method in it called modify_rule
but when I perform a post to /form_questions_answers/modify_rule/60
Rails tells me:
Routing Error
No route matches "/form_questions_answers/modify_rule/60" with {:method=>:post}
Why is this happening, I have map.resources :form_question_answers
in routes.rb, and map.connect ':controller/:action/:id'
at the bottom of the routes.rb file, so why isn't the modify_rule
action being triggered?