Files
libr-2/lib/tasks/create_timeline_sources.rake
T
2015-10-24 23:22:56 +08:00

15 lines
412 B
Ruby

namespace :create do
desc 'create timeline sources for share and like events'
task :create_timeline_source => :environment do
ShareInstance.all.each do |instance|
instance.user.timeline_sources.create! post_id: instance.sharable_id, action_type: 'share'
end
Like.all.each do |like|
like.user.timeline_sources.create! post_id: like.likable_id, action_type: 'like'
end
end
end