Add basic set of error pages
This commit is contained in:
parent
823284d6ba
commit
d649dc7da3
10 changed files with 115 additions and 41 deletions
7
app/controllers/error_pages_controller.rb
Normal file
7
app/controllers/error_pages_controller.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class ErrorPagesController < ApplicationController
|
||||
def not_found; end
|
||||
def unprocessable_content; end
|
||||
def internal_server_error; end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue