diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 21:33:55 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 21:33:55 -0500 |
commit | fc052b7743aa3d5bebe9f6c4216c7515a2174aa7 (patch) | |
tree | dcdd53e0881d5fd0cfe2824834044efc528c4051 /config | |
parent | 6a58319fd9c5e7930185535a42659ef88132c4d5 (diff) |
Users work 1000000000000% but there is a path issue with the html
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/routes.rb b/config/routes.rb index cbe6c2f..8a06cff 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,12 +3,12 @@ Leaguer::Application.routes.draw do #creates sessions as a resource but limits it to these actions resources :sessions, only: [:new, :create, :destroy] - resources :users - match 'signup', to: 'users#new', via: 'get' match 'signin', to: 'sessions#new', via: 'get' match 'signout', to: 'sessions#destroy', via: 'delete' + resources :users + resources :pms resources :alerts |