You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/08/23 16:55:24 UTC

svn commit: r688336 - /incubator/shindig/trunk/php/src/social-api/dataservice/PeopleHandler.php

Author: chabotc
Date: Sat Aug 23 07:55:24 2008
New Revision: 688336

URL: http://svn.apache.org/viewvc?rev=688336&view=rev
Log:
We've decided not to return all fields by default, switching back to id, name and thumbnail url as default result set (use fields=@all to fetch all profile details)

Modified:
    incubator/shindig/trunk/php/src/social-api/dataservice/PeopleHandler.php

Modified: incubator/shindig/trunk/php/src/social-api/dataservice/PeopleHandler.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social-api/dataservice/PeopleHandler.php?rev=688336&r1=688335&r2=688336&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social-api/dataservice/PeopleHandler.php (original)
+++ incubator/shindig/trunk/php/src/social-api/dataservice/PeopleHandler.php Sat Aug 23 07:55:24 2008
@@ -20,9 +20,7 @@
 class PeopleHandler extends DataRequestHandler {
 	private $service;
 	private static $PEOPLE_PATH = "/people/{userId}/{groupId}/{personId}";
-	//FIXME change this back to array("id", "name", "thumbnailUrl") once the dust settles
-	// on the spec discussion related to this
-	protected static $DEFAULT_PERSON_FIELDS = array('all' => 'all');
+	protected static $DEFAULT_PERSON_FIELDS = array("id", "name", "thumbnailUrl");
 
 	public function __construct()
 	{