Files
gitlabhq/app/helpers/sorting_helper.rb
T
2014-12-04 12:12:51 +02:00

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