Sha256: 5e13307847b39a8b8032294fc052b2bd24ada7894f4138f040f8ee99947e4575
Contents?: true
Size: 1.13 KB
Versions: 35
Compression:
Stored size: 1.13 KB
Contents
require 'pact_broker/api/resources/base_resource' require 'pact_broker/configuration' require 'pact_broker/api/decorators/tagged_pact_versions_decorator' module PactBroker module Api module Resources class TaggedPactVersions < 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::TaggedPactVersionsDecorator.new(pacts).to_json(user_options: decorator_context(identifier_from_path)) end def delete_resource pact_service.delete_all_pact_publications_between consumer_name, and: provider_name, tag: identifier_from_path[:tag] true end def pacts pact_service.find_all_pact_versions_between consumer_name, and: provider_name, tag: identifier_from_path[:tag] end end end end end
Version data entries
35 entries across 35 versions & 1 rubygems