Sha256: 35f6c5bd81ff49e023070150fcdfdea05b8f0945f6e34fcafdf0d5b4d7ee390b
Contents?: true
Size: 754 Bytes
Versions: 36
Compression:
Stored size: 754 Bytes
Contents
require "pact_broker/api/resources/base_resource" require "pact_broker/api/decorators/pacticipant_collection_decorator" module PactBroker module Api module Resources class PacticipantsForLabel < BaseResource def content_types_provided [["application/hal+json", :to_json]] end def allowed_methods ["GET", "OPTIONS"] end def to_json generate_json(pacticipant_service.find identifier_from_path ) end def generate_json pacticipants decorator_class(:pacticipant_collection_decorator).new(pacticipants).to_json(decorator_options) end def policy_name :'pacticipants::pacticipants' end end end end end
Version data entries
36 entries across 36 versions & 1 rubygems