debian-mirror-gitlab/lib/gitlab/ci/badge/pipeline/metadata.rb
2021-03-11 19:13:27 +05:30

29 lines
571 B
Ruby

# frozen_string_literal: true
module Gitlab::Ci
module Badge
module Pipeline
##
# Class that describes pipeline badge metadata
#
class Metadata < Badge::Metadata
def initialize(badge)
@project = badge.project
@ref = badge.ref
end
def title
'pipeline status'
end
def image_url
pipeline_project_badges_url(@project, @ref, format: :svg)
end
def link_url
project_commits_url(@project, id: @ref)
end
end
end
end
end