ncbo/bioportal_web_ui

View on GitHub
app/controllers/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErrorsController < ApplicationController

  layout :determine_layout

  def not_found
    render status: 404
  end

  def internal_server_error
    render status: 500
  end

end