Sha256: 6b1c463053ada7e1d966b2b0716fe644282afce4c66ee53300300e377f911104
Contents?: true
Size: 1001 Bytes
Versions: 13
Compression:
Stored size: 1001 Bytes
Contents
require 'pact_broker/api/resources/base_resource' require 'pact_broker/api/renderers/integrations_dot_renderer' require 'pact_broker/api/decorators/integrations_decorator' module PactBroker module Api module Resources class Integrations < BaseResource def content_types_provided [ ["text/vnd.graphviz", :to_dot], ["application/hal+json", :to_json] ] end def allowed_methods ["GET", "OPTIONS", "DELETE"] end def to_dot PactBroker::Api::Renderers::IntegrationsDotRenderer.call(integrations) end def to_json PactBroker::Api::Decorators::IntegrationsDecorator.new(integrations).to_json(user_options: decorator_context) end def integrations integration_service.find_all end def delete_resource integration_service.delete(consumer_name, provider_name) true end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems