class PactBroker::Webhooks::Execution
Constants
- EXECUTION_COLUMNS
-
Ignore the columns that were used before the
TriggeredWebhook
class existed. It used to goWebhook
->Execution
, and now it goesWebhook
->TriggeredWebhook
->Execution
If we ever release a major version where we drop unused columns, those columns could be deleted.
Public Instance Methods
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