songtianlun
5feaee4922
- Create SitemapsController to serve sitemaps - Configure AWS S3 storage for sitemaps - Update routes to include sitemap paths - Add SitemapsHelper module - Configure SitemapGenerator with AWS adapter - Update storage configurations for AWS This feature adds sitemap functionality to the application, enabling search engines to discover and index its content more efficiently. It includes configuration for AWS S3 storage to host the sitemaps and updates the application's routes to serve them.
8 lines
140 B
Ruby
8 lines
140 B
Ruby
require "test_helper"
|
|
|
|
class SitemapsControllerTest < ActionDispatch::IntegrationTest
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
end
|