Skip to content

Instantly share code, notes, and snippets.

@johndavid400
Created June 23, 2011 20:39
Show Gist options
  • Save johndavid400/1043575 to your computer and use it in GitHub Desktop.
Save johndavid400/1043575 to your computer and use it in GitHub Desktop.
1 DividendReporter::Application.routes.draw do
2
3 resources :roles
4
5 resources :stocks do
6 member do
7 post :watch
8 end
9 end
10
11 root :to => 'user_sessions#new'
12
13 resources :user_sessions
14 resources :users
15
16 match 'login' => 'user_sessions#new', :as => :login
17 match 'logout' => 'user_sessions#destroy', :as => :logout
18
19
20 end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment