1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-28 06:48:45 +09:00

Order invites by recent first (#8091)

Fix #8085
This commit is contained in:
Eugen Rochko 2018-07-28 23:15:17 +02:00 committed by nightpool
parent cc94b1d95a
commit 79a1f667c5

View File

@ -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