9f1beed7a7
Using new detailed statuses factory for external commit statuses.
22 lines
399 B
Ruby
22 lines
399 B
Ruby
module Gitlab
|
|
module Ci
|
|
module Status
|
|
module External
|
|
module Common
|
|
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
|