debian-mirror-gitlab/lib/gitlab/badge/pipeline/metadata.rb
2018-12-13 13:39:08 +05:30

30 lines
567 B
Ruby

# frozen_string_literal: true
module Gitlab
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