Module: Lite::Archive::Scopes
- Defined in:
- lib/lite/archive/scopes.rb
Instance Method Summary collapse
Instance Method Details
#archived ⇒ Object
7 8 9 |
# File 'lib/lite/archive/scopes.rb', line 7 def archived where.not(archived_at: nil) end |
#unarchived ⇒ Object
11 12 13 |
# File 'lib/lite/archive/scopes.rb', line 11 def unarchived where(archived_at: nil) end |