diff --git a/app/controllers/archives_controller.rb b/app/controllers/archives_controller.rb index 7df551f..17c833f 100644 --- a/app/controllers/archives_controller.rb +++ b/app/controllers/archives_controller.rb @@ -8,7 +8,7 @@ class ArchivesController < ApplicationController page.save end end - files_by_cateogry = ArchiveFile.filter_by_categories.filter_by_tags.asc(:sort_number).group_by(&:category) + files_by_cateogry = ArchiveFile.where(is_hidden: false).filter_by_categories.filter_by_tags.asc(:sort_number).group_by(&:category) categories = files_by_cateogry.keys cats = categories.collect do |category| url_to_edit = OrbitHelper.user_has_cateogry?(category) ? "/admin/archive_files?filters[category][]=#{category.id.to_s}" : ""