mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-13 14:44:59 +00:00
10 lines
167 B
Ruby
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
|