Skip to content
Snippets Groups Projects
Commit 79a1f667 authored by Eugen Rochko's avatar Eugen Rochko Committed by nightpool
Browse files

Order invites by recent first (#8091)

Fix #8085
parent cc94b1d9
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ class InvitesController < ApplicationController
private
def invites
Invite.where(user: current_user)
Invite.where(user: current_user).order(id: :desc)
end
def resource_params
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment