I have a resource that inherits its table and controller from its parent. Its parent also has custom routing that I want to pass to it, though I'm not sure how (or if it's even possible). The routes currently look like this:
resources :publications do
resources :editions, :controller => :publications
collection do
get :autocomplete, :claim, :current_users_publications, :lightbox, :lookup
post :review
end
member do
get :audit, :reassign_prompt
post :approve, :audit_vote
put :reassign
end
end
With the current setup, the editions model does not have access to custom methods like "audit" or "autocomplete." Is it possible to do something like ":routes => :publications"?