summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/snippets_sort.rb
blob: f122c843af741ffffba5a1d64965d83b366432c5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module SnippetsSort
  extend ActiveSupport::Concern

  def sort_param
    params[:sort].presence || 'updated_desc'
  end
end