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

28 lines
558 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module Ci
module Status
module Build
module Common
2018-05-09 12:01:36 +05:30
def illustration
{
image: 'illustrations/skipped-job_empty.svg',
size: 'svg-430',
title: _('This job does not have a trace.')
}
end
2017-08-17 22:00:37 +05:30
def has_details?
can?(user, :read_build, subject)
end
def details_path
2017-09-10 17:25:29 +05:30
project_job_path(subject.project, subject)
2017-08-17 22:00:37 +05:30
end
end
end
end
end
end