From ec34ec63b195d94a1ee43ac584ff74d84822222f Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Mon, 22 May 2017 13:36:21 -0400 Subject: Specs for cleanup workers (#3235) * Add spec files for feed and media cleanup workers * Add coverage for feed and media cleanup schedulers * Clean up feed and media cleanup workers --- app/models/media_attachment.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'app/models/media_attachment.rb') diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb index c29a66eb2..cf73c22b8 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -55,6 +55,7 @@ class MediaAttachment < ApplicationRecord validates :account, presence: true scope :attached, -> { where.not(status_id: nil) } + scope :unattached, -> { where(status_id: nil) } scope :local, -> { where(remote_url: '') } default_scope { order(id: :asc) } -- cgit