Compare commits

...

2 Commits

Author SHA1 Message Date
Osman
36c9378fb0
Merge 0bcb91f8ab into 94bceb8683 2025-07-11 14:05:44 +00:00
Osman
0bcb91f8ab
Sort auditable accounts
Change audible accounts to return in a predictable order.
2025-07-05 15:00:41 -07:00

View File

@ -6,7 +6,7 @@ module Admin
def index def index
authorize :audit_log, :index? authorize :audit_log, :index?
@auditable_accounts = Account.auditable.select(:id, :username) @auditable_accounts = Account.auditable.select(:id, :username).order(username: :asc)
end end
private private