You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by li...@apache.org on 2010/02/02 07:24:34 UTC

svn commit: r905526 - /incubator/shindig/trunk/features/src/main/javascript/features/opensocial-jsonrpc/jsonrpccontainer.js

Author: lindner
Date: Tue Feb  2 06:24:20 2010
New Revision: 905526

URL: http://svn.apache.org/viewvc?rev=905526&view=rev
Log:
SHINDIG-1278 | Patch from Nick Elsberry | JsonRpcContainer newFetchPeopleRequest doesn't support groupId = 'ALL'

Modified:
    incubator/shindig/trunk/features/src/main/javascript/features/opensocial-jsonrpc/jsonrpccontainer.js

Modified: incubator/shindig/trunk/features/src/main/javascript/features/opensocial-jsonrpc/jsonrpccontainer.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/opensocial-jsonrpc/jsonrpccontainer.js?rev=905526&r1=905525&r2=905526&view=diff
==============================================================================
--- incubator/shindig/trunk/features/src/main/javascript/features/opensocial-jsonrpc/jsonrpccontainer.js (original)
+++ incubator/shindig/trunk/features/src/main/javascript/features/opensocial-jsonrpc/jsonrpccontainer.js Tue Feb  2 06:24:20 2010
@@ -286,6 +286,8 @@
 
     if (groupId === 'FRIENDS') {
       groupId = "@friends";
+    } else if (groupId == 'ALL') {
+      groupId = "@all";
     } else if (groupId === 'SELF' || !groupId) {
       groupId = "@self";
     }