Created
January 18, 2021 10:31
-
-
Save dskecse/f6ba46cdbd175d36a80a91ddf1c0afd0 to your computer and use it in GitHub Desktop.
Positionable module/concern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Positionable | |
extend ActiveSupport::Concern | |
included do | |
scope :by_position, -> { order("#{table_name}.position ASC") } | |
# or default_scope | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage example: