Skip to content
代码片段 群组 项目
未验证 提交 1a9b7e23 编辑于 作者: Gregory Havenga's avatar Gregory Havenga 提交者: GitLab
浏览文件

Merge branch '510203-try-removing-the-scope' into 'master'

No related branches found
No related tags found
无相关合并请求
......@@ -84,11 +84,6 @@ module Vulnerability
scope :with_findings_excluding_uuid, ->(uuid) { joins(:findings).merge(Vulnerabilities::Finding.excluding_uuids(uuid)) }
scope :with_findings_scanner_and_identifiers, -> { includes(findings: [:scanner, :identifiers, { finding_identifiers: :identifier }]) }
scope :with_findings_scanner_identifiers_and_notes, -> { with_findings_scanner_and_identifiers.includes(:notes) }
scope :visible_to_user_and_access_level, ->(user, access_level) {
where(
project_id: ::Project.visible_to_user_and_access_level(user, access_level)
.distinct.pluck_primary_key)
}
scope :with_report_types, ->(report_types) { where(report_type: report_types) }
scope :with_severities, ->(severities) { where(severity: severities) }
scope :with_states, ->(states) { where(state: states) }
......
......@@ -107,22 +107,6 @@
end
end
describe '.visible_to_user_and_access_level' do
let(:project_2) { create(:project) }
before do
project.add_developer(user)
create(:vulnerability, project: project_2)
end
subject { described_class.visible_to_user_and_access_level(user, ::Gitlab::Access::DEVELOPER) }
it 'returns vulnerabilities visible for given user with provided access level' do
is_expected.to contain_exactly(vulnerability)
end
end
describe '.with_limit' do
subject(:limited_vulnerabilities) { described_class.with_limit(1) }
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册