aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/errors_controller.rb
blob: 94e0d7b4c7ab30b1031c5c4662e3a07f7ccee352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class ErrorsController < ApplicationController
  def not_found
    render status: 404
  end

  def server_error
    render status: 500
  end

  def not_allowed
    render status: 403
  end
end