Skip to content

Instantly share code, notes, and snippets.

@joemsak
Created December 11, 2010 18:56
Show Gist options
  • Save joemsak/737568 to your computer and use it in GitHub Desktop.
Save joemsak/737568 to your computer and use it in GitHub Desktop.
scope :path => 'forums' do
root :to => 'discussions#index'
resources :discussion_topics, :path => 'topics', :as => 'topics' do
resources :discussions do
resources :discussion_replies, :path => 'replies', :as => 'replies', :only => [:create, :update, :destroy]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment