Class: Athar::TableEventsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/athar/table_events_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



5
6
7
8
9
# File 'app/controllers/athar/table_events_controller.rb', line 5

def show
  @event = Athar::TableEvent.find_by(id: params[:id])

  head(:not_found) and return unless @event
end