Sha256: de0f6a3e12c39ab171d969f4231d630bf777ec7bfafa2dd540f8d13f62aaa89a
Contents?: true
Size: 1.12 KB
Versions: 6
Compression:
Stored size: 1.12 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_versions_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
6 entries across 6 versions & 1 rubygems