From: Anton Khorev Date: Tue, 25 Oct 2022 10:35:18 +0000 (+0300) Subject: Pass min/max lat/lon to notes rss feed builder X-Git-Tag: live~1543^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/0c8b9eabf332d3aafa7ae7dc2c29c06a4b66bea1 Pass min/max lat/lon to notes rss feed builder --- diff --git a/app/controllers/api/notes_controller.rb b/app/controllers/api/notes_controller.rb index c152c6272..7f508ab34 100644 --- a/app/controllers/api/notes_controller.rb +++ b/app/controllers/api/notes_controller.rb @@ -190,6 +190,10 @@ module Api bbox.check_size(Settings.max_note_request_area) notes = notes.bbox(bbox) + @min_lon = bbox.min_lon + @min_lat = bbox.min_lat + @max_lon = bbox.max_lon + @max_lat = bbox.max_lat end # Find the comments we want to return diff --git a/test/controllers/api/notes_controller_test.rb b/test/controllers/api/notes_controller_test.rb index f7e7c77f4..f46647f02 100644 --- a/test/controllers/api/notes_controller_test.rb +++ b/test/controllers/api/notes_controller_test.rb @@ -1032,6 +1032,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