It's not longer than 80 chars

This commit is contained in:
Lin Jen-Shin 2016-07-20 23:42:07 +08:00
parent 08f01dbbc5
commit caf6438a24
1 changed files with 1 additions and 3 deletions

View File

@ -12,9 +12,7 @@ module Ci
scope :unstarted, ->() { where(runner_id: nil) }
scope :ignore_failures, ->() { where(allow_failure: false) }
scope :with_artifacts, ->() do
where.not(artifacts_file: [nil, ''])
end
scope :with_artifacts, ->() { where.not(artifacts_file: [nil, '']) }
scope :with_expired_artifacts, ->() { with_artifacts.where('artifacts_expire_at < ?', Time.now) }
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
scope :manual_actions, ->() { where(when: :manual) }