2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|