diff options
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 522b39f..90abea4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,7 +6,7 @@ Leaguer::Application.routes.draw do #creates sessions as a resource but limits it to these actions match '/signup', to: 'users#new', via: 'get' match '/signin', to: 'sessions#new', via: 'get' - match '/signout', to: 'sessions#destroy', via: 'delete' + match '/signout', to: 'sessions#destroy', via: 'get' resources :users |