gitlab-org--gitlab-foss/lib/gitlab/ci/status/external/common.rb
2017-01-17 14:16:36 +01:00

22 lines
399 B
Ruby

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