debian-mirror-gitlab/lib/gitlab/ci/status/build/erased.rb
2023-07-09 08:55:56 +05:30

23 lines
482 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Status
module Build
class Erased < Status::Extended
def illustration
{
image: 'illustrations/empty-state/empty-projects-deleted-md.svg',
size: 'svg-150',
title: _('Job has been erased')
}
end
def self.matches?(build, user)
build.erased?
end
end
end
end
end
end