Sha256: 53b5e01ae71f40888d69ccaa6e61f19ae56cdd65c1043589f197f2622c83a010
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
require "pact_broker/api/resources/base_resource" require "pact_broker/api/decorators/dashboard_decorator" require "pact_broker/api/decorators/dashboard_text_decorator" require "pact_broker/api/resources/pagination_methods" module PactBroker module Api module Resources class Dashboard < BaseResource include PaginationMethods def content_types_provided [ ["application/hal+json", :to_json], ["text/plain", :to_text], ] end def allowed_methods ["GET", "OPTIONS"] end def to_json decorator_class(:dashboard_decorator).new(index_items).to_json(**decorator_options) end def to_text decorator_class(:dashboard_text_decorator).new(index_items).to_text(**decorator_options) end def policy_name :'dashboard::dashboard' end private def index_items index_service.find_index_items_for_api(**identifier_from_path.merge(pagination_options)) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems