提交 2f50b206 编写于 作者: B Bob Van Landuyt

Hide archived projects from `shared_projects`

Since we don't show the archived projects, we shouldnot  load them and
pass them to the fronted to be filtered out again.
上级 35ba75f6
......@@ -24,7 +24,9 @@ module Groups
# Make the `search` param consistent for the frontend,
# which will be using `filter`.
params[:search] ||= params[:filter] if params[:filter]
params.permit(:sort, :search)
# Don't show archived projects
params[:non_archived] = true
params.permit(:sort, :search, :non_archived)
end
end
end
......
......@@ -38,7 +38,7 @@ describe Groups::SharedProjectsController do
end
it 'allows filtering shared projects' do
project = create(:project, :archived, namespace: user.namespace, name: "Searching for")
project = create(:project, namespace: user.namespace, name: "Searching for")
share_project(project)
get_shared_projects(filter: 'search')
......@@ -55,5 +55,14 @@ describe Groups::SharedProjectsController do
expect(json_project_ids).to eq([second_project.id, shared_project.id])
end
it 'does not include archived projects' do
archived_project = create(:project, :archived, namespace: user.namespace)
share_project(archived_project)
get_shared_projects
expect(json_project_ids).to contain_exactly(shared_project.id)
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册