Sha256: 668fb94578628bade86a1e23a52470c65da4a94bbc34a8a843f4b7c29959eb04
Contents?: true
Size: 705 Bytes
Versions: 51
Compression:
Stored size: 705 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 PactBroker::Api::Decorators::PacticipantCollectionDecorator.new(pacticipants).to_json(user_options: { base_url: base_url }) end end end end end
Version data entries
51 entries across 51 versions & 1 rubygems