discourse/app/controllers/exceptions_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
387 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2013-02-06 03:16:51 +08:00
class ExceptionsController < ApplicationController
skip_before_action :check_xhr, :preload_json
2013-02-06 03:16:51 +08:00
def not_found
# centralize all rendering of 404 into app controller
raise Discourse::NotFound
2013-02-06 03:16:51 +08:00
end
2014-04-30 03:17:40 +08: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)
end
2013-02-06 03:16:51 +08:00
end