routing map a action controller

Posted by Luca Romagnoli on Stack Overflow See other posts from Stack Overflow or by Luca Romagnoli
Published on 2010-04-15T22:58:04Z Indexed on 2010/04/15 23:03 UTC
Read the original article Hit count: 245

Filed under:
|

Hi i have a controller named "places" with some action like "view", "new", "create"

When a user try to launch mysite.com/places

i want that is execute the action show of a another controller called "cores" so in the routes.rb file i've put this:

map.connect '/:id/show', :controller => "cores", :action => "show"

But it doesn't work.

I receive this error:

Processing PlacesController#show (for 127.0.0.1 at 2010-04-16 00:52:07) [GET]

ActionController::UnknownAction (No action responded to show. Actions: admin_denied, admin_required, auto_complete_for_location, auto_complete_for_name, change_location, create, create_facebook_session, create_facebook_session_with_secret, edit, exist, facebook_params, facebook_session, facebook_session_expired, facebook_session_parameters, get_form, is_admin?, new, one_or_true, redirect_to, render_publisher_error, render_publisher_interface, render_publisher_response, set_facebook_session, top_redirect_to, update, wants_interface?, and zero_or_false):

How can i do to map that action in another controller?

thanks

© Stack Overflow or respective owner

Related posts about routes

Related posts about ruby-on-rails