octobox/octobox

View on GitHub
app/controllers/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErrorsController < ApplicationController
 
  def not_found
    render status: 404
  end
  def unprocessable
    render status: 422
  end
  def internal
    render status: 500
  end
  
end