Sha256: d3bdf6525432060a09ee8de45fd80a6a7cd75c37273783f5b0d1aa3be9d3b10b
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 KB
Contents
require "pact_broker/api/resources/base_resource" require "pact_broker/configuration" require "pact_broker/api/decorators/provider_pacts_decorator" module PactBroker module Api module Resources class ProviderPacts < BaseResource def content_types_provided [["application/hal+json", :to_json]] end def allowed_methods ["GET", "OPTIONS"] end def resource_exists? !!provider end def policy_name :'pacts::provider_pacts' end def to_json decorator_class(:provider_pacts_decorator).new(pacts).to_json(decorator_options(identifier_from_path.merge(title: resource_title))) end private def pacts pact_service.find_pact_versions_for_provider provider_name, tag: identifier_from_path[:tag] end def resource_title suffix = identifier_from_path[:tag] ? " with consumer version tag '#{identifier_from_path[:tag]}'" : "" "All pact versions for the provider #{identifier_from_path[:provider_name]}#{suffix}" end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems