otwarchive-sunsetarchive/app/helpers/admin_post_helper.rb
2026-03-17 01:16:49 -04:00

8 lines
248 B
Ruby
Executable file

module AdminPostHelper
def sorted_translations(admin_post)
admin_post.translations.sort_by do |translation|
language = translation.language
language.sortable_name.blank? ? language.short : language.sortable_name
end
end
end