Method: MailsViewer::HomeController#raw

Defined in:
app/controllers/mails_viewer/home_controller.rb

#rawObject



19
20
21
22
23
24
25
# File 'app/controllers/mails_viewer/home_controller.rb', line 19

def raw
  if @filename
    render text: File.read(@filename)
  else
    head :not_found
  end
end