debian-mirror-gitlab/lib/gitlab/ci/status/external/common.rb
2017-09-10 17:25:29 +05:30

26 lines
466 B
Ruby

module Gitlab
module Ci
module Status
module External
module Common
def label
subject.description
end
def has_details?
subject.target_url.present? &&
can?(user, :read_commit_status, subject)
end
def details_path
subject.target_url
end
def has_action?
false
end
end
end
end
end
end