16 lines
265 B
Ruby
16 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Adamantium
|
|
module Relations
|
|
class Pages < Adamantium::DB::Relation
|
|
schema :pages, infer: true
|
|
|
|
auto_struct(true)
|
|
|
|
def published
|
|
where(self[:published_at] <= Time.now)
|
|
end
|
|
end
|
|
end
|
|
end
|