This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/vendor/built_in_modules/personal_conference/app/models/personal_conference_tag.rb

10 lines
212 B
Ruby

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