Also exclude artifacts_file with empty string, feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5347#note_13198105
This commit is contained in:
parent
fea934b596
commit
a7713232ea
1 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,9 @@ module Ci
|
||||||
|
|
||||||
scope :unstarted, ->() { where(runner_id: nil) }
|
scope :unstarted, ->() { where(runner_id: nil) }
|
||||||
scope :ignore_failures, ->() { where(allow_failure: false) }
|
scope :ignore_failures, ->() { where(allow_failure: false) }
|
||||||
scope :with_artifacts, ->() { where.not(artifacts_file: nil) }
|
scope :with_artifacts, ->() do
|
||||||
|
where.not(artifacts_file: [nil, ''])
|
||||||
|
end
|
||||||
scope :with_expired_artifacts, ->() { with_artifacts.where('artifacts_expire_at < ?', Time.now) }
|
scope :with_expired_artifacts, ->() { with_artifacts.where('artifacts_expire_at < ?', Time.now) }
|
||||||
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
|
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
|
||||||
scope :manual_actions, ->() { where(when: :manual) }
|
scope :manual_actions, ->() { where(when: :manual) }
|
||||||
|
|
Loading…
Reference in a new issue