Fix local follows, 404 in logs
This commit is contained in:
parent
0f4bc56719
commit
509c18eb13
7 changed files with 28 additions and 11 deletions
|
@ -7,8 +7,21 @@ class ApplicationController < ActionController::Base
|
|||
|
||||
helper_method :current_account
|
||||
|
||||
rescue_from ActionController::RoutingError, with: :not_found
|
||||
rescue_from ActiveRecord::RecordNotFound, with: :not_found
|
||||
|
||||
def raise_not_found
|
||||
raise ActionController::RoutingError.new("No route matches #{params[:unmatched_route]}")
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def not_found
|
||||
respond_to do |format|
|
||||
format.any { head 404 }
|
||||
end
|
||||
end
|
||||
|
||||
def current_account
|
||||
current_user.try(:account)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue