mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 09:57:25 +08:00
FEATURE: Add site setting to show more detailed 404 errors. (#8014)
If the setting is turned on, then the user will receive information about the subject: if it was deleted or requires some special access to a group (only if the group is public). Otherwise, the user will receive a generic #404 error message. For now, this change affects only the topics and categories controller. This commit also tries to refactor some of the code related to error handling. To make error pages more consistent (design-wise), the actual error page will be rendered server-side.
This commit is contained in:
@ -2,7 +2,6 @@
|
||||
|
||||
class ExceptionsController < ApplicationController
|
||||
skip_before_action :check_xhr, :preload_json
|
||||
before_action :hide_search
|
||||
|
||||
def not_found
|
||||
# centralize all rendering of 404 into app controller
|
||||
@ -11,13 +10,7 @@ class ExceptionsController < ApplicationController
|
||||
|
||||
# Give us an endpoint to use for 404 content in the ember app
|
||||
def not_found_body
|
||||
render html: build_not_found_page(200, false)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def hide_search
|
||||
@hide_search = true if SiteSetting.login_required
|
||||
render html: build_not_found_page(status: 200)
|
||||
end
|
||||
|
||||
end
|
||||
|
Reference in New Issue
Block a user