orientation/orientation

View on GitHub
app/models/concerns/dateable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Dateable
  extend ActiveSupport::Concern

  included do
    scope :recent, -> { order(updated_at: :desc) }
  end
end