Class: AutoApi::Base
- Inherits:
-
Sinatra::Base
- Object
- Sinatra::Base
- AutoApi::Base
- Defined in:
- lib/auto_api/base.rb
Instance Method Summary collapse
Instance Method Details
#webtry(block) ⇒ Object
92 93 94 95 96 97 98 99 100 101 |
# File 'lib/auto_api/base.rb', line 92 def webtry(block) begin status 200 block.call rescue Mongoid::Errors::DocumentNotFound status 404 rescue status 500 end end |