From 0da7584e997122e7bec9348ba4ef2d66f4ff35f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20M=C3=BCllegger?= Date: Sun, 19 May 2013 14:11:07 +0200 Subject: [PATCH] We don't need detail pages for apps in the API. --- djadmin2/apiviews.py | 1 - 1 file changed, 1 deletion(-) diff --git a/djadmin2/apiviews.py b/djadmin2/apiviews.py index c292f73..d1d09d1 100644 --- a/djadmin2/apiviews.py +++ b/djadmin2/apiviews.py @@ -61,7 +61,6 @@ class IndexAPIView(Admin2APIMixin, APIView): for model in models: model_data.append(self.get_model_data(model)) return { - 'url': '-- todo --', 'app_label': app_label, 'models': model_data, }