Sha256: 6e566cde285f20ff70bf28d27617b270f4ab35cafd8cb7dfc964b6dbdaee9a2b
Contents?: true
Size: 1.05 KB
Versions: 5
Compression:
Stored size: 1.05 KB
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/hal+json", :to_json]] end def allowed_methods ["GET", "DELETE", "OPTIONS"] 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(user_options: decorator_context(identifier_from_path)) end def pacts pact_service.find_all_pact_versions_between consumer_name, :and => provider_name end def delete_resource pact_service.delete_all_pact_publications_between(consumer_name, and: provider_name) true end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems