X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/12c1d5e6c05813a0697724277b4d8529a1a7c240..edd8bf77394a667246b548b169914002858e13d6:/app/views/api/changesets/_changeset.xml.builder diff --git a/app/views/api/changesets/_changeset.xml.builder b/app/views/api/changesets/_changeset.xml.builder index e0188a10e..08cfbbc79 100644 --- a/app/views/api/changesets/_changeset.xml.builder +++ b/app/views/api/changesets/_changeset.xml.builder @@ -24,11 +24,13 @@ xml.changeset(attrs) do |changeset_xml_node| # include discussion if requested - if @include_discussion + if @comments changeset_xml_node.discussion do |discussion_xml_node| - changeset.comments.includes(:author).each do |comment| + @comments.each do |comment| cattrs = { - "date" => comment.created_at.xmlschema + "id" => comment.id, + "date" => comment.created_at.xmlschema, + "visible" => comment.visible } if comment.author.data_public? cattrs["uid"] = comment.author.id