Skip to content
Snippets Groups Projects
Commit e915ee33 authored by David Palubin's avatar David Palubin Committed by Mayra Cabrera
Browse files

Prevent archived projects from showing up in global search

parent ae69bdea
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -18,7 +18,7 @@ module Search
end
 
def projects
@projects ||= ProjectsFinder.new(current_user: current_user).execute
@projects ||= ProjectsFinder.new(params: { non_archived: true }, current_user: current_user).execute
end
 
def allowed_scopes
Loading
Loading
---
title: Prevent archived projects from showing up in global search
merge_request: 31498
author: David Palubin
type: fixed
Loading
Loading
@@ -42,6 +42,14 @@ describe Search::GlobalService do
 
expect(results.objects('projects')).to match_array [found_project]
end
it 'does not return archived projects' do
archived_project = create(:project, :public, archived: true, name: 'archived_project')
results = described_class.new(user, search: "archived").execute
expect(results.objects('projects')).not_to include(archived_project)
end
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment