Skip to content
Snippets Groups Projects
Commit 82f9c1c4 authored by Gregory Stark's avatar Gregory Stark
Browse files

add rubocop whitelist

parent d21f4130
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -60,7 +60,7 @@ module Ci
new = Ci::Build.select(:id).where(%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)],
Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id'))
union = Gitlab::SQL::Union.new([old, new], remove_duplicates: false)
where(%Q[ci_builds.id IN (#{union.to_sql})])
where(%Q[ci_builds.id IN (#{union.to_sql})]) # rubocop:disable GitlabSecurity/SqlInjection
end
 
scope :with_artifacts_not_expired, ->() do
Loading
Loading
@@ -68,7 +68,7 @@ module Ci
new = Ci::Build.select(:id).where(%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)],
Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id AND (expire_at IS NULL OR expire_at > ?)', Time.now))
union = Gitlab::SQL::Union.new([old, new], remove_duplicates: false)
where(%Q[ci_builds.id IN (#{union.to_sql})])
where(%Q[ci_builds.id IN (#{union.to_sql})]) # rubocop:disable GitlabSecurity/SqlInjection
end
 
scope :with_expired_artifacts, ->() do
Loading
Loading
@@ -76,7 +76,7 @@ module Ci
new = Ci::Build.select(:id).where(%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)],
Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id AND expire_at < ?', Time.now))
union = Gitlab::SQL::Union.new([old, new], remove_duplicates: false)
where(%Q[ci_builds.id IN (#{union.to_sql})])
where(%Q[ci_builds.id IN (#{union.to_sql})]) # rubocop:disable GitlabSecurity/SqlInjection
end
 
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
Loading
Loading
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