Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
82f9c1c4
Commit
82f9c1c4
authored
Feb 09, 2018
by
Greg Stark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add rubocop whitelist
parent
d21f4130
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
app/models/ci/build.rb
app/models/ci/build.rb
+3
-3
No files found.
app/models/ci/build.rb
View file @
82f9c1c4
...
...
@@ -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
...
...
@@ -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
...
...
@@ -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
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment