discourse/app/controllers/exceptions_controller.rb

Failed to ignore revisions in .git-blame-ignore-revs.

17 lines
388 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
class ExceptionsController < ApplicationController
skip_before_action :check_xhr, :preload_json
2013-02-05 14:16:51 -05:00
def not_found
# centralize all rendering of 404 into app controller
raise Discourse::NotFound
2013-02-05 14:16:51 -05:00
end
2014-04-29 15:17:40 -04:00
# Give us an endpoint to use for 404 content in the ember app
def not_found_body
render html: build_not_found_page(status: 200)
2018-06-07 01:28:18 -04:00
end
2013-02-05 14:16:51 -05:00
end