summaryrefslogtreecommitdiff
path: root/coip/apps/opensocial/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'coip/apps/opensocial/__init__.py')
-rw-r--r--coip/apps/opensocial/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/coip/apps/opensocial/__init__.py b/coip/apps/opensocial/__init__.py
index 289f68c..6f81e98 100644
--- a/coip/apps/opensocial/__init__.py
+++ b/coip/apps/opensocial/__init__.py
@@ -1,6 +1,8 @@
from tastypie.api import Api
-from coip.apps.opensocial.people import PersonResource, MembershipResource
+from coip.apps.opensocial.people import PersonResource, MembershipResource,\
+ GroupResource
opensocial_v1 = Api(api_name = "1.0")
opensocial_v1.register(PersonResource())
-opensocial_v1.register(MembershipResource()) \ No newline at end of file
+opensocial_v1.register(MembershipResource())
+opensocial_v1.register(GroupResource()) \ No newline at end of file