Files
timeoverflow/app/controllers/errors_controller.rb
Marc Anguera Insa f2d37796c6 custom error pages
2018-02-21 11:41:56 +01:00

10 lines
154 B
Ruby

class ErrorsController < ApplicationController
def not_found
render status: 404
end
def internal_server_error
render status: 500
end
end