gitlab-org--gitlab-foss/lib/gitlab/ci/status/extended/pipeline/common.rb

25 lines
380 B
Ruby
Raw Normal View History

module Gitlab::Ci
module Status
module Extended
module Pipeline
module Common
def initialize(pipeline)
@pipeline = pipeline
end
def has_details?
true
end
def details_path
end
def has_action?
false
end
end
end
end
end
end