mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
80fb20816c
correct 404 handling for invalid pages
10 lines
199 B
Ruby
10 lines
199 B
Ruby
class ExceptionsController < ApplicationController
|
|
skip_before_filter :check_xhr
|
|
|
|
def not_found
|
|
# centralize all rendering of 404 into app controller
|
|
raise Discourse::NotFound
|
|
end
|
|
|
|
end
|