Add Account.auditable scope, fix N+1 in admin/action_logs#index (#28812)

This commit is contained in:
Matt Jankowski 2024-01-18 20:39:30 -05:00 committed by GitHub
parent 5ae3bae586
commit 1480573c83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 2 deletions

View file

@ -72,7 +72,7 @@ class Admin::ActionLogFilter
end
def results
scope = latest_action_logs.includes(:target)
scope = latest_action_logs.includes(:target, :account)
params.each do |key, value|
next if key.to_s == 'page'