anonoz/itcwresume

View on GitHub
app/controllers/errors_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErrorsController < ApplicationController
  layout 'layouts/error'

  def not_found
    @title = "404 Not Found - IJE Resume"
    render status: 404
  end

  def internal_server_error
    @title = "500 Internal Server Error - IJE Resume"
    render status: 500
  end
end