Don't forget to lycansubscribe 🐺
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

added task to just download posts from the queue

Kuba Suder e34485ec 5e3c54cf

+9
+9
lib/tasks/import.rake
··· 53 53 54 54 importer.run_import(ENV['UNTIL']) 55 55 end 56 + 57 + task :process_posts do 58 + queue = LikeQueue.new(Like.where(post: nil).to_a) 59 + report = ImportReport.new 60 + 61 + downloader = PostDownloader.new 62 + downloader.report = report 63 + downloader.import_from_queue(queue) 64 + end