Browse Source

Sort case log index table by most recent by default (#567)

pull/568/head v0.1.4
baarkerlounger 3 years ago committed by GitHub
parent
commit
48d36232f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/controllers/case_logs_controller.rb

1
app/controllers/case_logs_controller.rb

@ -131,6 +131,7 @@ private
query = query.public_send("filter_by_#{category}", values, current_user)
end
end
query = query.order(created_at: :desc)
current_user.support? ? query.all.includes(:owning_organisation, :managing_organisation) : query
end

Loading…
Cancel
Save