Skip to content

Instantly share code, notes, and snippets.

@almaron
Created June 26, 2012 06:08
Show Gist options
  • Save almaron/2993686 to your computer and use it in GitHub Desktop.
Save almaron/2993686 to your computer and use it in GitHub Desktop.
Routes.rb
resources :messages, :except => ["index"] do
collection do
get "/inbox", :to => "messages#inbox"
get "/outbox", :to => "messages#outbox"
get "/notify", :to => "messages#notify"
end
end
@rvanlieshout
Copy link

resources :messages, :except => ["index"] do
collection do
get :inbox
get :outbox
get :notify
end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment