gitlab-org--gitlab-foss/app/helpers/sorting_helper.rb

18 lines
272 B
Ruby

module SortingHelper
def sort_title_oldest_updated
'Oldest updated'
end
def sort_title_recently_updated
'Recently updated'
end
def sort_title_oldest_created
'Oldest created'
end
def sort_title_recently_created
'Recently created'
end
end