diff --git a/views/feeds/sitemap.psql b/views/feeds/sitemap.psql index 86dd3ad1..1f4bb3ae 100644 --- a/views/feeds/sitemap.psql +++ b/views/feeds/sitemap.psql @@ -39,6 +39,15 @@ WITH sitemap_data AS ( g.name AS title, CONCAT('https://coryd.dev', g.url) AS url FROM optimized_genres g + + UNION ALL + + SELECT + s.last_watched_at AS content_date, + s.title, + CONCAT('https://coryd.dev', s.url) AS url + FROM optimized_shows s + WHERE s.last_watched_at IS NOT NULL ) SELECT