Commit 44cdee05 authored by fjsanpedro's avatar fjsanpedro

Remove epic check generating sitemap

parent 0f6b61e6
---
title: Remove epic check generating sitemap
merge_request: 47381
author:
type: changed
......@@ -25,10 +25,9 @@ module Gitlab
"#{base_url}#{full_path}",
"#{base_url}groups/#{full_path}/-/issues",
"#{base_url}groups/#{full_path}/-/merge_requests",
"#{base_url}groups/#{full_path}/-/packages"
].tap do |urls|
urls << "#{base_url}groups/#{full_path}/-/epics" if group.feature_available?(:epics)
end
"#{base_url}groups/#{full_path}/-/packages",
"#{base_url}groups/#{full_path}/-/epics"
]
end
def extract_from_project(project)
......
......@@ -55,8 +55,6 @@ RSpec.describe Gitlab::Sitemaps::UrlExtractor do
subject { described_class.extract_from_group(group) }
it 'returns several group urls' do
stub_licensed_features(epics: true)
expected_urls = [
group_url(group),
issues_group_url(group),
......@@ -67,14 +65,6 @@ RSpec.describe Gitlab::Sitemaps::UrlExtractor do
expect(subject).to match_array(expected_urls)
end
context 'when epics are not enabled' do
it 'does nor include epics url' do
stub_licensed_features(epics: false)
expect(subject).not_to include(group_epics_url(group))
end
end
end
describe '.extract_from_project' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment