.map -> .pluck

This commit is contained in:
Nihad Abbasov 2012-09-26 23:28:10 -07:00
parent 841e4fbd08
commit c7a1779b22
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ class Milestone < ActiveRecord::Base
end
def participants
User.where(id: issues.map(&:assignee_id))
User.where(id: issues.pluck(:assignee_id))
end
def percent_complete

View File

@ -147,7 +147,7 @@ class Project < ActiveRecord::Base
end
def wiki_notes
Note.where(noteable_id: wikis.map(&:id), noteable_type: 'Wiki', project_id: self.id)
Note.where(noteable_id: wikis.pluck(:id), noteable_type: 'Wiki', project_id: self.id)
end
def project_id