We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5589cc commit 5c61a3dCopy full SHA for 5c61a3d
lib/tasks/one_off.rake
@@ -1,4 +1,15 @@
1
namespace :one_off do
2
+ desc "Clean up orphaned page tags"
3
+ task clean_orphaned_page_tags: :environment do
4
+ PageTag.find_each do |page_tag|
5
+ referenced_page = page_tag.page
6
+
7
+ if page.nil?
8
+ page_tag.destroy
9
+ end
10
11
12
13
desc "Alert users who've saved at least one tree"
14
task trees_notification: :environment do
15
reference_code = 'green-trees'
0 commit comments