Class: IeStatusController::StatusController

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

Instance Method Summary collapse

Instance Method Details

#aliveObject



8
9
10
11
12
13
# File 'app/controllers/ie_status_controller/status_controller.rb', line 8

def alive
  UptimeVerification.first_or_create.touch
  render plain: 'iedb$ok'
rescue
  render plain: 'iedb?error', status: 503
end