Method: Webhookdb::Replicator::Base#clear_backfill_information
- Defined in:
- lib/webhookdb/replicator/base.rb
#clear_backfill_information ⇒ Object
Remove all the information needed for backfilling from the integration so that it can be re-entered
305 306 307 308 309 310 311 |
# File 'lib/webhookdb/replicator/base.rb', line 305 def clear_backfill_information self._clear_backfill_information # If we don't support both webhooks and backfilling, we are safe to clear ALL fields # and get back into an initial state. self._clear_webook_information unless self.descriptor.supports_webhooks_and_backfill? self.service_integration.save_changes end |