]> git.openstreetmap.org Git - rails.git/commitdiff
Pass min/max lat/lon to notes index rss builder
authorAnton Khorev <tony29@yandex.ru>
Tue, 25 Oct 2022 10:52:28 +0000 (13:52 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 25 Oct 2022 10:52:28 +0000 (13:52 +0300)
app/controllers/api/notes_controller.rb
test/controllers/api/notes_controller_test.rb

index 7f508ab34be07948d68854fab4c79bee78349794..d915d8126e42c268357a10b0f1a88ff4d6ba0de4 100644 (file)
@@ -35,6 +35,10 @@ module Api
 
       # Check the the bounding box is not too big
       bbox.check_size(Settings.max_note_request_area)
+      @min_lon = bbox.min_lon
+      @min_lat = bbox.min_lat
+      @max_lon = bbox.max_lon
+      @max_lat = bbox.max_lat
 
       # Find the notes we want to return
       @notes = notes.bbox(bbox).order("updated_at DESC").limit(result_limit).preload(:comments)
index f46647f02e9b6d172d2afe663d171298b0063323..31c55b3a81e7c83b4e2f5afd4a5e033f0a7f7070 100644 (file)
@@ -632,6 +632,7 @@ module Api
       assert_equal "application/rss+xml", @response.media_type
       assert_select "rss", :count => 1 do
         assert_select "channel", :count => 1 do
+          assert_select "description", :text => /1\.2/, :count => 1
           assert_select "item", :count => 2
         end
       end