mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
728e8a262c
Due to what seems to be a bug in ActiveRecord, the distinct: true option is not recognized on counts with string column names. This commit fixes that by moving the DISTINCT into the count string. For robustness, the integration spec for IncomingLinksReport was rewritten to be an actual integration spec, running the actual interface on actual fake data.
6 lines
136 B
Ruby
6 lines
136 B
Ruby
Fabricator(:incoming_link) do
|
|
user
|
|
post
|
|
ip_address { sequence(:ip_address) { |n| "123.#{(n*3)%255}.#{(n*2)%255}.#{n%255}" } }
|
|
end
|