feature/share-libs
rb 11 lines 238 Bytes
Raw
1 class ErrorsController < ApplicationController
2 def not_found
3 @meta_title = 'We are lost'
4 @meta_description = 'Sorry, we are lost.'
5 render status: 404
6 end
7
8 def internal_server_error
9 render status: 500
10 end
11 end