debian-mirror-gitlab/lib/gitlab/ci/status/build/pending.rb
2018-12-13 13:39:08 +05:30

24 lines
571 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Status
module Build
class Pending < Status::Extended
def illustration
{
image: 'illustrations/pending_job_empty.svg',
size: 'svg-430',
title: _('This job has not started yet'),
content: _('This job is in pending state and is waiting to be picked by a runner')
}
end
def self.matches?(build, user)
build.pending?
end
end
end
end
end
end