diff options
author | Azul <azul@riseup.net> | 2016-03-23 22:19:27 +0100 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-05-02 08:23:34 -0300 |
commit | 9a8f1da14f6a0ab83206c57059fbc8cf5bc77b60 (patch) | |
tree | 56c8d1812aafb597009c49cd3644a9294c05cca2 /config/routes.rb | |
parent | 16da29309cdb117e2ac40eb93286fc265c3135d5 (diff) |
upgrade: no more underspecified match routes
Diffstat (limited to 'config/routes.rb')
-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 e370aa4..be3b3be 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -10,8 +10,8 @@ LeapWeb::Application.routes.draw do # HTTP Error Handling # instead of the default error pages use the errors controller and views # - match '/404' => 'errors#not_found' - match '/500' => 'errors#server_error' + match '/404' => 'errors#not_found', via: [:get, :post] + match '/500' => 'errors#server_error', via: [:get, :post] scope "(:locale)", :locale => CommonLanguages.match_available, :controller => 'pages', :action => 'show' do get 'privacy-policy', :as => 'privacy_policy' |