mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08:00
REFACTOR: Reduce number of queries sent to the DB.
This commit is contained in:
parent
3a46ea8bad
commit
917d186303
|
@ -457,12 +457,18 @@ class Group < ActiveRecord::Base
|
|||
|
||||
Group.exec_sql(sql, group_id: self.id, user_ids: user_ids)
|
||||
|
||||
new_attributes = {}
|
||||
|
||||
if self.primary_group?
|
||||
User.where(id: user_ids).update_all(primary_group_id: self.id)
|
||||
new_attributes[:primary_group_id] = self.id
|
||||
end
|
||||
|
||||
if self.title.present?
|
||||
User.where(id: user_ids).update_all(title: self.title)
|
||||
new_attributes[:title] = self.title
|
||||
end
|
||||
|
||||
if new_attributes.present?
|
||||
User.where(id: user_ids).update_all(new_attributes)
|
||||
end
|
||||
|
||||
if self.grant_trust_level.present?
|
||||
|
|
Loading…
Reference in New Issue
Block a user