Edit for Accessibility.

This commit is contained in:
BoHung Chiu 2021-06-21 18:15:33 +08:00
parent 8fafa6ec13
commit fc0710da10
1 changed files with 5 additions and 1 deletions

View File

@ -507,7 +507,11 @@ class AnnouncementsController < ApplicationController
if @ext == "png" || @ext == "jpg" || @ext == "bmp" || @ext == "pdf"
render "archives/download_file.html",:layout=>false
else
send_file(@path)
if (current_site.accessibility_mode rescue false)
render "redirect_to_file",:layout=>false
else
send_file(@path)
end
end
else
render :file => "#{Rails.root}/app/views/errors/403.html", :layout => false, :status => :not_found, :content_type => 'text/html'