Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is for a Rails 2 app that I'm working on because the person who would normally work on it is on vacation. I know some ruby and almost nothing about rails. I've looked through other posts on this site but nothing is the silver bullet I need.

I have this route set up in route.rb (I've pulled it out of the block its in just to highlight it here).:

admin.resources :content_bundle_profiles, :member => { :publish => :put, :remove_from_sale => :put }, :collection => { :attach_bundles => :put, :search => :get } do |cbp|
    cbp.resources :description_book_icon_for_bundles, :controller =>'content_bundle_profiles/description_book_icon_for_bundles'
end

Which is part of this:

map.namespace :admin do |admin|
    admin.root :controller => "content_bundle_profiles"
    admin.resources :content_bundle_profiles, :member => { :publish => :put, :remove_from_sale => :put }, :collection => { :attach_bundles => :put, :search => :get } do |cbp|
        cbp.resources :description_book_icon_for_bundles, :controller =>'content_bundle_profiles/description_book_icon_for_bundles'
    end
    admin.resources :tag_groups, :only => [:index, :edit, :create, :update, :update_all, :destroy], :collection => { :update_all => :put } do |tg|
      tg.resources :tags, :controller => 'tag_groups/tags'
    end
    admin.resources :content_bundle_versions, :only => [:new, :create]
    admin.resources :transaction_receipts, :only => [:index]
    admin.resources :transaction_stats, :only => [:index]
    admin.resources :content_type_mappings, :only => [:index, :new, :create]
    admin.resources :upgrades, :only => [:index, :new, :create], :collection => { :toggle_upgrade_path_available => :put }
end

When I output the routing info in the ruby console I get this:

GET    /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"index"}
POST   /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"create"}
GET    /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles/new(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"new"}
GET    /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles/:id/edit(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"edit"}
GET    /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles/:id(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"show"}
PUT    /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles/:id(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"update"}
DELETE /admin/content_bundle_profiles/:content_bundle_profile_id/description_book_icon_for_bundles/:id(.:format)? {:controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles", :action=>"destroy"}

Which looks correct to me.

When I try to 'link_to' a new description_book_icon_for_bundles, I get the following error:

No route matches {:action=>"new", :controller=>"admin/content_bundle_profiles/description_book_icon_for_bundles"}

Or

undefined method `new_admin_content_bundle_profiles_description_book_icon_for_bundles_path' for #<ActionView::Base:0x10cf35518>

Depending on how I set up the 'link_to' options. The first way is

<%= link_to 'Add description, book, and icon to content bundle profile', :controller => "admin/content_bundle_profiles/description_book_icon_for_bundles", :action => "new" %>

The second way is

<%= link_to 'Add description, book, and icon to content bundle profile', new_admin_content_bundle_profiles_description_book_icon_for_bundles_path(@content_bundle_profile) %>

I've tried various permutations of the controller path just to see if something needed to be added or not, like a beginning / or new in a different place.
Some other controller paths I've tried have been:

admin/content_bundle_profiles/description_book_icon_for_bundle
admin/content_bundle_profile/description_book_icon_for_bundles
admin/content_bundle_profile/description_book_icon_for_bundle
/admin/content_bundle_profiles/description_book_icon_for_bundles
content_bundle_profiles/description_book_icon_for_bundles

I've done similiar trials with the second way of using link_to with no luck. Some of those have been these:

admin_content_bundle_profiles_description_book_icon_for_bundles_new_path(@content_bundle_profile), :method => :get 
admin_content_bundle_profiles_description_book_icon_for_bundle_new_path(@content_bundle_profile)
new_admin_content_bundle_profiles_description_book_icon_for_bundle_path(@content_bundle_profile)
new_admin_content_bundle_profiles_description_book_icon_for_bundles_path(@content_bundle_profile)

The new method for the Admin::ContentBundleProfilesController is:

def new
    @content_bundle_profile = ContentBundleProfile.new
end

The new method for Admin::ContentBundleProfiles::DescriptionBookIconForBundlesController is:

def new
    @content_bundle_profile = ContentBundleProfile.find(params[:content_bundle_profile_id])
    @description_book_icon_for_bundle = @content_bundle_profile.description_book_icon_for_bundle.build    
end

I've seen both ways on the net and either should work (I think). I'm wondering if something else needs to be set up or if I've missed something. Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.