ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
313 B

  1. namespace :nico do
  2. desc 'ニコタグ連携'
  3. task link: :environment do
  4. Post.find_each do |post|
  5. tags = post.tags.where(category: 'nico')
  6. tags.each do |tag|
  7. post.tags.concat(tag.linked_tags) if tag.linked_tags.present?
  8. end
  9. post.tags = post.tags.to_a.uniq
  10. end
  11. end
  12. end