From 5aa5c8971047b2fd5c8c3656df43dcacc1d4ad69 Mon Sep 17 00:00:00 2001
From: Branson Stephens <stephenb@uwm.edu>
Date: Wed, 27 Mar 2013 09:39:54 -0500
Subject: [PATCH] removed global tag detail view since meaning unknown

---
 gracedb/api.py | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gracedb/api.py b/gracedb/api.py
index ced47a2a8..8130843b6 100644
--- a/gracedb/api.py
+++ b/gracedb/api.py
@@ -624,9 +624,12 @@ class TagList(APIView):
     def get(self, request):
         # Return a list of links to all tag objects.
         rv = {
-                'tags' : [ reverse("tag-detail", args=[tag.name],
-                                   request=request)
-                           for tag in Tag.objects.all() ]
+#                 'tags' : [ reverse("tag-detail", args=[tag.name],
+#                                    request=request)
+#                            for tag in Tag.objects.all() ]
+#                For now, we just output the tag names, since we don't know what 
+#                tag-detail should look like.
+                 'tags' : [ tag.name for tag in Tag.objects.all() ]
              }
         return Response(rv)
 
-- 
GitLab