mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 22:15:09 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
module CanBeBatched
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
belongs_to :batch, optional: true
|
|
|
|
scope :in_batch, -> { where.not(batch_id: nil) }
|
|
scope :not_in_batch, -> { where(batch_id: nil) }
|
|
end
|
|
end
|