mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
make rubocop happy
This commit is contained in:
parent
f0f3deb32b
commit
2ae87a27fa
1 changed files with 5 additions and 6 deletions
|
@ -128,12 +128,11 @@ class UserStat < ActiveRecord::Base
|
||||||
|
|
||||||
# topic_reply_count is a count of posts in other users' topics
|
# topic_reply_count is a count of posts in other users' topics
|
||||||
def update_topic_reply_count
|
def update_topic_reply_count
|
||||||
self.topic_reply_count =
|
self.topic_reply_count = Topic
|
||||||
Topic
|
.joins("INNER JOIN posts ON topics.id = posts.topic_id AND topics.user_id <> posts.user_id")
|
||||||
.joins("INNER JOIN posts ON topics.id = posts.topic_id AND topics.user_id <> posts.user_id")
|
.where("posts.deleted_at IS NULL AND posts.user_id = ?", self.user_id)
|
||||||
.where("posts.deleted_at IS NULL AND posts.user_id = ?", self.user_id)
|
.distinct
|
||||||
.distinct
|
.count
|
||||||
.count
|
|
||||||
end
|
end
|
||||||
|
|
||||||
MAX_TIME_READ_DIFF = 100
|
MAX_TIME_READ_DIFF = 100
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue