class PactBroker::Webhooks::Execution

Constants

EXECUTION_COLUMNS

Ignore the columns that were used before the TriggeredWebhook class existed. It used to go Webhook -> Execution, and now it goes Webhook -> TriggeredWebhook -> Execution If we ever release a major version where we drop unused columns, those columns could be deleted.

Public Instance Methods

<=>(other) click to toggle source
# File lib/pact_broker/webhooks/execution.rb, line 20
def <=> other
  comp = created_date <=> other.created_date
  comp = id <=> other.id if comp == 0
  comp
end