On 5 May 2011 13:20, Clem Rock <[email protected]> wrote:
> Update:
>
> I realized I should also attempt to go w/ a operations_controller
> instead of the operator_profile_controller. So I did that and I now
> have in routes:
>
> resources :operations
>
> and in operations controller I have all 7 rest methods.
>
> And now I'm getting this:
>
> No route matches {:controller=>"operators", :action=>"edit"}
>
> because of this link in application.html.erb:
>
> <%= link_to('Profile', :controller => "operators", :action => "edit")
Look at your routes and you will see that edit requires an id (so it
knows which one to edit). You have not provided the id in the link.
> %>
>
> and this fails as well:
>
> <%= link_to('Profile', :controller => "operators_profile", :action =>
> "edit") %>
Same problem here I imagine.
Colin
>
> My model is operator.rb
>
> Here's a dump of all my operator related routes:
>
> [code]
> operator_profile_index GET /operator_profile(.:format)
> {:action=>"index", :controller=>"operator_profile"}
> POST /operator_profile(.:format)
> {:action=>"create", :controller=>"operator_profile"}
> new_operator_profile GET /operator_profile/new(.:format)
> {:action=>"new", :controller=>"operator_profile"}
> edit_operator_profile GET /operator_profile/:id/edit(.:format)
> {:action=>"edit", :controller=>"operator_profile"}
> operator_profile GET /operator_profile/:id(.:format)
> {:action=>"show", :controller=>"operator_profile"}
> PUT /operator_profile/:id(.:format)
> {:action=>"update", :controller=>"operator_profile"}
> DELETE /operator_profile/:id(.:format)
> {:action=>"destroy", :controller=>"operator_profile"}
>
>
> operators GET /operators(.:format)
> {:action=>"index", :controller=>"operators"}
> POST /operators(.:format)
> {:action=>"create", :controller=>"operators"}
> new_operator GET /operators/new(.:format)
> {:action=>"new", :controller=>"operators"}
> edit_operator GET /operators/:id/edit(.:format)
> {:action=>"edit", :controller=>"operators"}
> operator GET /operators/:id(.:format)
> {:action=>"show", :controller=>"operators"}
> PUT /operators/:id(.:format)
> {:action=>"update", :controller=>"operators"}
> DELETE /operators/:id(.:format)
> {:action=>"destroy", :controller=>"operators"}
> [/code]
--
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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.