mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
FIX: counting invites didn't work
PostgreSQL reported the following error: "for SELECT DISTINCT, ORDER BY expressions must appear in select list"
This commit is contained in:
parent
ba2209f7d7
commit
4be8f17e66
|
@ -183,11 +183,11 @@ class Invite < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def self.find_pending_invites_count(inviter)
|
||||
find_all_invites_from(inviter, 0, nil).where('invites.user_id IS NULL').count
|
||||
find_all_invites_from(inviter, 0, nil).where('invites.user_id IS NULL').reorder(nil).count
|
||||
end
|
||||
|
||||
def self.find_redeemed_invites_count(inviter)
|
||||
find_all_invites_from(inviter, 0, nil).where('invites.user_id IS NOT NULL').count
|
||||
find_all_invites_from(inviter, 0, nil).where('invites.user_id IS NOT NULL').reorder(nil).count
|
||||
end
|
||||
|
||||
def self.filter_by(email_or_username)
|
||||
|
|
|
@ -402,6 +402,8 @@ describe Invite do
|
|||
|
||||
expect(invites.length).to eq(1)
|
||||
expect(invites.first).to eq pending_invite
|
||||
|
||||
expect(Invite.find_pending_invites_count(inviter)).to eq(1)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -426,6 +428,8 @@ describe Invite do
|
|||
|
||||
expect(invites.length).to eq(1)
|
||||
expect(invites.first).to eq redeemed_invite
|
||||
|
||||
expect(Invite.find_redeemed_invites_count(inviter)).to eq(1)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user