Class: ApplicationController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/application_controller.rb

Instance Method Summary collapse

Instance Method Details

#authenticate_terminalObject



8
9
10
11
# File 'app/controllers/application_controller.rb', line 8

def authenticate_terminal
  @terminal = Terminal.find_by_keyword(params[:terminal])
  render :text => nil, :status => 404 if @terminal.blank?
end