Class: AutoApi::Base

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

Instance Method Summary collapse

Instance Method Details

#webtryObject



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

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