about summary refs log tree commit diff
path: root/app/models/preview_card.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-10 13:48:48 +0200
committerGitHub <noreply@github.com>2019-09-10 13:48:48 +0200
commit86748148256b504c0411119628435b1445959309 (patch)
treed2d0337156c1528d417b1d124d0e0636ec283b85 /app/models/preview_card.rb
parent9045f5e3f8aabcdff908058764882b7165a03925 (diff)
Change tootctl to use inline parallelization instead of Sidekiq (#11776)
- Remove --background option
- Add --concurrency(=5) option
- Add progress bars
Diffstat (limited to 'app/models/preview_card.rb')
-rw-r--r--app/models/preview_card.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/preview_card.rb b/app/models/preview_card.rb
index a792b352b..9d6c1938a 100644
--- a/app/models/preview_card.rb
+++ b/app/models/preview_card.rb
@@ -43,6 +43,8 @@ class PreviewCard < ApplicationRecord
   validates_attachment_size :image, less_than: LIMIT
   remotable_attachment :image, LIMIT
 
+  scope :cached, -> { where.not(image_file_name: [nil, '']) }
+
   before_save :extract_dimensions, if: :link?
 
   def save_with_optional_image!