Sha256: ca6265f6462cdada767548aedb3930b98021150a28bf443f806cf474cfe3fe6a
Contents?: true
Size: 883 Bytes
Versions: 2
Compression:
Stored size: 883 Bytes
Contents
require 'pact_broker/api/resources/base_resource' require 'pact_broker/configuration' require 'pact_broker/api/decorators/pact_versions_decorator' module PactBroker module Api module Resources class PactVersions < BaseResource def content_types_provided [["application/json", :to_json]] end def allowed_methods ["GET"] end def resource_exists? pacticipant_service.find_pacticipant_by_name(consumer_name) && pacticipant_service.find_pacticipant_by_name(provider_name) end def to_json PactBroker::Api::Decorators::PactVersionsDecorator.new(pacts).to_json(decorator_context(identifier_from_path)) end def pacts pact_service.find_all_pact_versions_between consumer_name, :and => provider_name end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pact_broker-1.14.0 | lib/pact_broker/api/resources/pact_versions.rb |
pact_broker-1.13.0 | lib/pact_broker/api/resources/pact_versions.rb |