Class: AutoApi::Base

Inherits:
Sinatra::Base
  • Object
show all
Defined in:
lib/auto_api/base.rb

Instance Method Summary collapse

Instance Method Details

#webtryObject



88
89
90
91
92
93
94
95
# File 'lib/auto_api/base.rb', line 88

def webtry
  status 200
  yield
rescue Mongoid::Errors::DocumentNotFound
  status 404
rescue
  status 500
end