2010-11-18 7 views
0

routes.rb에서이 경로의 방법은 무엇입니까?

 map.resources :groups, :collection => { :find_or_create => :get, :search => :get } do |group| 
group.resources :recruitment_periods, :controller => 'groups/recruitment_periods' do |period| 
    period.resources :recruits,  :controller => 'groups/recruitment_periods/recruits' 

특정 그룹의 show action으로 리디렉션하고 싶다면 recruit_period, 경로는 무엇이 될까요? 즉 redirect_to groups_recruitment_period_recruit_path(x,y,z)

답변

2

나는 거의 그렇게 생각합니다. 다음과 같아야합니다.

redirect_to group_recruitment_period_recruit_path(x,y,z) 

어느 것이든지 알고 있기 때문에 그룹에 복수가 없습니다.

관련 문제