Files
gitlabhq/app/controllers/concerns/snippets_sort.rb
2024-06-25 15:28:32 +00:00

10 lines
167 B
Ruby

# frozen_string_literal: true
module SnippetsSort
extend ActiveSupport::Concern
def sort_param
pagination_params[:sort].presence || 'updated_desc'
end
end