From 885b041a83f91387df3dcf16188c9f3048e30c22 Mon Sep 17 00:00:00 2001 From: TheDanniCraft Date: Tue, 27 Jan 2026 03:08:20 +0100 Subject: [PATCH] fix: Update help center sitemap XML structure (#13357) # Pull Request Template ## Description The Help Center sitemap endpoint (`/hc/:portal_slug/sitemap.xml`) previously rendered a `` element while embedding article URLs directly, which does not align with the sitemap specification. This change fixes the structure by: - Replacing `` with `` - Adding the required sitemap XML namespace - Rendering each published article as a `` entry with `` and `` This ensures the endpoint outputs a valid, self-contained sitemap document. Fixes #13334 ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality not to work as expected) - [ ] This change requires a documentation update ## How Has This Been Tested? - Updated the existing `portals_controller_spec.rb` - Adjusted assertions to validate a `` root element and the sitemap XML namespace - Verified that the sitemap returns only published article URLs - Ran the updated RSpec controller specs locally ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [x] Any dependent changes have been merged and published in downstream modules --- .../public/api/v1/portals/sitemap.xml.erb | 10 +++--- .../public/api/v1/portals_controller_spec.rb | 31 +++++++++++++------ 2 files changed, 26 insertions(+), 15 deletions(-) diff --git a/app/views/public/api/v1/portals/sitemap.xml.erb b/app/views/public/api/v1/portals/sitemap.xml.erb index d3e2b8301..1ea828165 100644 --- a/app/views/public/api/v1/portals/sitemap.xml.erb +++ b/app/views/public/api/v1/portals/sitemap.xml.erb @@ -1,9 +1,9 @@ - + <% @portal.articles.where(status: :published).each do |article| %> - + <%= @help_center_url %><%= generate_article_link(@portal.slug, article.slug, false, false) %> - <%= article.updated_at.strftime("%Y-%m-%d") %> - + <%= article.updated_at.to_date.iso8601 %> + <% end %> - \ No newline at end of file + diff --git a/spec/controllers/public/api/v1/portals_controller_spec.rb b/spec/controllers/public/api/v1/portals_controller_spec.rb index 92ab56e5b..9cc77a19c 100644 --- a/spec/controllers/public/api/v1/portals_controller_spec.rb +++ b/spec/controllers/public/api/v1/portals_controller_spec.rb @@ -60,24 +60,35 @@ RSpec.describe Public::Api::V1::PortalsController, type: :request do describe 'GET /public/api/v1/portals/{portal_slug}/sitemap' do context 'when custom_domain is present' do - it 'gets a valid sitemap' do + it 'returns a valid urlset sitemap with the correct namespace' do get "/hc/#{portal.slug}/sitemap.xml" + expect(response).to have_http_status(:success) - expect(response.body).to match(/