Class: SimpleEmailTracker::EmailTrackersController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/simple_email_tracker/email_trackers_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



4
5
6
7
8
9
10
11
# File 'app/controllers/simple_email_tracker/email_trackers_controller.rb', line 4

def show
  v = Visit.find_by_uuid params[:uuid]
  v.visit_by request
  send_file(
       File.expand_path("../../assets/images/t.gif", __FILE__),
       filename: "t.gif",
       type: "image/pdf")
end