Orbit/vendor/built_in_modules/archive/app/models/archive_tag.rb

10 lines
190 B
Ruby
Raw Normal View History

2012-04-13 07:24:19 +00:00
class ArchiveTag < Tag
has_and_belongs_to_many :archive_files
def get_visible_links(sort = :name)
self.archive_files.where(:is_hidden => false).desc(:is_top, sort)
end
end