2013-02-05 14:16:51 -05:00
|
|
|
class ExceptionsController < ApplicationController
|
2013-10-01 23:05:03 -04:00
|
|
|
skip_before_filter :check_xhr, :preload_json
|
2017-06-29 01:37:03 -04:00
|
|
|
before_action :hide_google
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def not_found
|
2013-05-19 20:29:49 -04:00
|
|
|
# centralize all rendering of 404 into app controller
|
|
|
|
raise Discourse::NotFound
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-19 20:29:49 -04:00
|
|
|
|
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
|
2017-04-10 08:01:25 -04:00
|
|
|
render html: build_not_found_page(200, false)
|
2014-04-29 15:17:40 -04:00
|
|
|
end
|
|
|
|
|
2017-06-29 01:37:03 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def hide_google
|
|
|
|
@hide_google = true if SiteSetting.login_required
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|