require_relative 'pact_decorator' module PactBroker module Api module Decorators class LatestPactDecorator < PactDecorator links :self do | options | [ { href: latest_pact_url(options[:base_url], represented) },{ href: pact_url(options[:base_url], represented) } ] end end end end end