2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
class ExceptionsController < ApplicationController
|
2017-08-31 12:06:56 +08:00
|
|
|
skip_before_action :check_xhr, :preload_json
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def not_found
|
2013-05-20 08:29:49 +08:00
|
|
|
# centralize all rendering of 404 into app controller
|
|
|
|
raise Discourse::NotFound
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-05-20 08:29:49 +08:00
|
|
|
|
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
|
2019-10-08 19:15:08 +08:00
|
|
|
render html: build_not_found_page(status: 200)
|
2017-06-29 13:37:03 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|