debian-mirror-gitlab/lib/gitlab/ci/status/build/erased.rb

22 lines
430 B
Ruby
Raw Normal View History

2018-05-09 12:01:36 +05:30
module Gitlab
module Ci
module Status
module Build
class Erased < Status::Extended
def illustration
{
2018-10-15 14:42:47 +05:30
image: 'illustrations/erased-log_empty.svg',
2018-05-09 12:01:36 +05:30
size: 'svg-430',
title: _('Job has been erased')
}
end
def self.matches?(build, user)
build.erased?
end
end
end
end
end
end