Sha256: 42bd49d88eb85bb84a6eaacd3a02204637f33f37d1666e0fb8d50303b6f73804
Contents?: true
Size: 1.04 KB
Versions: 17
Compression:
Stored size: 1.04 KB
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 @integrations ||= integration_service.find_all end def delete_resource integration_service.delete_all true end def policy_name :'integrations::integrations' end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems