orbit-basic/vendor/built_in_modules/faq/app/models/faq_tag.rb

10 lines
167 B
Ruby

class FaqTag < Tag
has_and_belongs_to_many :qas
def get_visible_links(sort = :title)
self.qas.where(:is_hidden => false).desc(:is_top, sort)
end
end