Class: PactBroker::Api::Decorators::PacticipantDecorator

Inherits:
BaseDecorator
  • Object
show all
Includes:
Timestamps
Defined in:
lib/pact_broker/api/decorators/pacticipant_decorator.rb

Direct Known Subclasses

DeprecatedPacticipantDecorator

Instance Method Summary collapse

Methods included from Timestamps

#optional_updated_at

Methods included from PactBrokerUrls

#badge_url_for_latest_pact, #hal_browser_url, #label_url, #labels_url, #latest_pact_url, #latest_pacts_url, #latest_untagged_pact_url, #latest_verifications_for_consumer_version_url, #latest_version_url, #matrix_url_from_params, #new_verification_url, #pact_url, #pact_url_from_params, #pact_version_url, #pact_versions_url, #pacticipant_url, #pacticipant_url_from_params, #pacticipants_url, #previous_distinct_diff_url, #previous_distinct_pact_version_url, #tag_url, #tags_url, #triggered_webhook_logs_url, #url_encode, #verification_publication_url, #verification_url, #verification_url_from_params, #version_url, #version_url_from_params, #versions_url, #webhook_execution_url, #webhook_url, #webhooks_for_pact_url, #webhooks_status_url, #webhooks_url

Instance Method Details

#to_hash(options) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/pact_broker/api/decorators/pacticipant_decorator.rb', line 45

def to_hash options
  h = super
  dasherized = DasherizedVersionDecorator.new(represented).to_hash(options)
  if dasherized['_embedded']
    if dasherized['_embedded']['latest-version']
      dasherized['_embedded']['latest-version']['title'] = 'DEPRECATED - please use latestVersion'
      dasherized['_embedded']['latest-version']['name'] = 'DEPRECATED - please use latestVersion'
    end
    h['_embedded'] ||= {}
    h['_embedded'].merge!(dasherized['_embedded'])
  end
  h
end