* 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>
7 lines
138 B
Ruby
7 lines
138 B
Ruby
module DataUpdateScripts
|
|
class RemoveStackbitPage
|
|
def run
|
|
Page.destroy_by(slug: "connecting-with-stackbit")
|
|
end
|
|
end
|
|
end
|