5186d6faa1
Enables frozen string for all remaining files in lib/gitlab/ci. Partially addresses #47424.
24 lines
571 B
Ruby
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
|