require "pact_broker/api/resources/base_resource" require "pact_broker/api/decorators/pacticipants_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(:pacticipants_decorator).new(pacticipants).to_json(**decorator_options) end def policy_name :'pacticipants::pacticipants' end end end end end