Support 404 routes in the Ember App

This commit is contained in:
Robin Ward
2014-04-29 15:17:40 -04:00
parent f61f29439e
commit f50039b48b
8 changed files with 54 additions and 26 deletions

View File

@ -6,4 +6,13 @@ class ExceptionsController < ApplicationController
raise Discourse::NotFound
end
# 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
end