debian-mirror-gitlab/app/models/concerns/updated_at_filterable.rb
2018-03-27 19:54:05 +05:30

12 lines
321 B
Ruby

module UpdatedAtFilterable
extend ActiveSupport::Concern
included do
scope :updated_before, ->(date) { where(scoped_table[:updated_at].lteq(date)) }
scope :updated_after, ->(date) { where(scoped_table[:updated_at].gteq(date)) }
def self.scoped_table
arel_table.alias(table_name)
end
end
end