Compare commits

...

3 Commits

Author SHA1 Message Date
Osman
d379958623
Merge badb5a8d1a into 7273f6c03c 2025-07-14 10:06:26 +00:00
Osman
badb5a8d1a
Merge branch 'main' into patch-1 2025-07-12 17:55:32 -07: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