public
Description: OneBody is web-based software that connects community members, especially churches, on the web.
Homepage: http://beonebody.com
Clone URL: git://github.com/seven1m/onebody.git
Include updated_at in people_names_and_ids so thumbnails will work in groups.
Tim Morgan (author)
Wed Oct 15 06:14:00 -0700 2008
commit  e2bd33309e4688a81f2f97fb5c4184b8d446bdd7
tree    507d2bf4e407ea9381351fc2ee23800f3d5bde47
parent  6849ebe86834dbaf74321d6f86faa6aa57c17128
...
134
135
136
137
 
138
139
140
...
134
135
136
 
137
138
139
140
0
@@ -134,7 +134,7 @@ class Group < ActiveRecord::Base
0
   end
0
 
0
   def people_names_and_ids
0
-    select = %w(id family_id first_name last_name suffix birthday gender email visible_to_everyone full_access classes).map { |c| "people.#{c}" }.join(',')
0
+    select = %w(id family_id first_name last_name suffix birthday gender email visible_to_everyone full_access classes updated_at).map { |c| "people.#{c}" }.join(',')
0
     self.people(select)
0
   end
0
 

Comments