2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
class ExceptionsController < ApplicationController
|
2017-08-30 23:06:56 -05:00
|
|
|
skip_before_action :check_xhr, :preload_json
|
2018-08-14 20:53:04 -05:00
|
|
|
before_action :hide_search
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
def not_found
|
2013-05-19 19:29:49 -05:00
|
|
|
# centralize all rendering of 404 into app controller
|
|
|
|
raise Discourse::NotFound
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
2013-05-19 19:29:49 -05:00
|
|
|
|
2014-04-29 14:17:40 -05:00
|
|
|
# Give us an endpoint to use for 404 content in the ember app
|
|
|
|
def not_found_body
|
2017-04-10 07:01:25 -05:00
|
|
|
render html: build_not_found_page(200, false)
|
2014-04-29 14:17:40 -05:00
|
|
|
end
|
|
|
|
|
2017-06-29 00:37:03 -05:00
|
|
|
private
|
|
|
|
|
2018-08-14 20:53:04 -05:00
|
|
|
def hide_search
|
|
|
|
@hide_search = true if SiteSetting.login_required
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2017-06-29 00:37:03 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|