docbrown/lib/data_update_scripts/20211206222716_remove_stackbit_page.rb
Jeremy Friesen bd36ed087b
Removing the stackbit integration (#15701)
* Removing the stackbit integration

The feature didn't quite work and Stackbit no longer supports this
integration.

Yes there are a few places where the webhooks has a string of "stackbit"
but I'm hesitant to remove that, as they are the part of the Webhooks
tests.

Closes #15700

* Update lib/data_update_scripts/20211206222716_remove_stackbit_page.rb

Co-authored-by: Michael Kohl <citizen428@forem.com>

Co-authored-by: Michael Kohl <citizen428@forem.com>
2021-12-08 10:20:15 -05:00

7 lines
138 B
Ruby

module DataUpdateScripts
class RemoveStackbitPage
def run
Page.destroy_by(slug: "connecting-with-stackbit")
end
end
end