2013-02-06 03:16:51 +08:00
|
|
|
class ExceptionsController < ApplicationController
|
2013-10-02 11:05:03 +08:00
|
|
|
skip_before_filter :check_xhr, :preload_json
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def not_found
|
2014-09-06 17:42:18 +08:00
|
|
|
@hide_google = true if SiteSetting.login_required
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# Don't show google search if it's embedded in the Ember app
|
|
|
|
@hide_google = true
|
|
|
|
|
|
|
|
render text: build_not_found_page(200, false)
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|