]> git.openstreetmap.org Git - rails.git/commitdiff
Merge pull request #4610 from AntonKhorev/no-old-note-api
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 26 Jun 2024 13:17:39 +0000 (14:17 +0100)
committerGitHub <noreply@github.com>
Wed, 26 Jun 2024 13:17:39 +0000 (14:17 +0100)
Remove old note api endpoints

config/routes.rb
test/controllers/api/notes_controller_test.rb

index acf2256a30c1963485a8d7752bf83534ad9bc958..98c8ba15e07459a08e4c420d7a4f9289316b1023 100644 (file)
@@ -99,12 +99,6 @@ OpenStreetMap::Application.routes.draw do
       end
     end
 
-    post "notes/addPOIexec" => "notes#create"
-    post "notes/closePOIexec" => "notes#close"
-    post "notes/editPOIexec" => "notes#comment"
-    get "notes/getGPX" => "notes#index", :format => "gpx"
-    get "notes/getRSSfeed" => "notes#feed", :format => "rss"
-
     resources :user_blocks, :only => [:show], :constraints => { :id => /\d+/ }, :controller => "user_blocks", :as => :api_user_blocks
   end
 
index 045e3bf434fe8b6dc36054379e5a4561c7f2fc63..42972e494d85033c13f90b23faea40bef0c88f2f 100644 (file)
@@ -99,27 +99,6 @@ module Api
         { :path => "/api/0.6/notes/feed", :method => :get },
         { :controller => "api/notes", :action => "feed", :format => "rss" }
       )
-
-      assert_recognizes(
-        { :controller => "api/notes", :action => "create" },
-        { :path => "/api/0.6/notes/addPOIexec", :method => :post }
-      )
-      assert_recognizes(
-        { :controller => "api/notes", :action => "close" },
-        { :path => "/api/0.6/notes/closePOIexec", :method => :post }
-      )
-      assert_recognizes(
-        { :controller => "api/notes", :action => "comment" },
-        { :path => "/api/0.6/notes/editPOIexec", :method => :post }
-      )
-      assert_recognizes(
-        { :controller => "api/notes", :action => "index", :format => "gpx" },
-        { :path => "/api/0.6/notes/getGPX", :method => :get }
-      )
-      assert_recognizes(
-        { :controller => "api/notes", :action => "feed", :format => "rss" },
-        { :path => "/api/0.6/notes/getRSSfeed", :method => :get }
-      )
     end
 
     def test_create_success