Skip to content

Instantly share code, notes, and snippets.

@jraczak
Created March 4, 2012 02:45
Show Gist options
  • Save jraczak/1970174 to your computer and use it in GitHub Desktop.
Save jraczak/1970174 to your computer and use it in GitHub Desktop.
Routes
Sonar::Application.routes.draw do
root :to => "echoes#index"
resources :echoes
resources :users
resource :session
match "/login" => "sessions#new", :as => "login"
match "/logout" => "sessions#destroy", :as => "logout"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment