From d1c0b5a6cfdfae98e2cfa7f72782b3dfe42adaff Mon Sep 17 00:00:00 2001 From: Toks Date: Mon, 28 Apr 2014 16:05:45 -0400 Subject: [PATCH] Fix accepting terms of service not working --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index fdebe17e8..8391c0b85 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -361,7 +361,7 @@ Rails.application.routes.draw do get "/static/bookmarklet" => "static#bookmarklet", :as => "bookmarklet" get "/static/site_map" => "static#site_map", :as => "site_map" get "/static/terms_of_service" => "static#terms_of_service", :as => "terms_of_service" - get "/static/accept_terms_of_service" => "static#accept_terms_of_service", :as => "accept_terms_of_service" + post "/static/accept_terms_of_service" => "static#accept_terms_of_service", :as => "accept_terms_of_service" get "/static/mrtg" => "static#mrtg", :as => "mrtg" get "/static/contact" => "static#contact", :as => "contact" get "/static/benchmark" => "static#benchmark"