discourse/app/controllers/exceptions_controller.rb

10 lines
199 B
Ruby

class ExceptionsController < ApplicationController
skip_before_filter :check_xhr
def not_found
# centralize all rendering of 404 into app controller
raise Discourse::NotFound
end
end