5 lines
156 B
Ruby
5 lines
156 B
Ruby
|
class ErrorsController < ApplicationController
|
||
|
def routing
|
||
|
render :file => "#{Rails.root}/public/404.html", :status => 404, :layout => false
|
||
|
end
|
||
|
end
|