Procházet zdrojové kódy

In the API, return Pin resource upon creation

Fixes #68
tags/v1.0.0
Krzysztof Klimonda před 11 roky
rodič
revize
974d2a8720
2 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. +1
    -0
      pinry/api/api.py
  2. +1
    -0
      pinry/api/tests.py

+ 1
- 0
pinry/api/api.py Zobrazit soubor

@@ -84,4 +84,5 @@ class PinResource(ModelResource):
queryset = Pin.objects.all()
resource_name = 'pin'
include_resource_uri = False
always_return_data = True
authorization = DjangoAuthorization()

+ 1
- 0
pinry/api/tests.py Zobrazit soubor

@@ -79,6 +79,7 @@ class PinResourceTest(ResourceTestCase):
'tags': ['random', 'tags'],
}
response = self.api_client.post('/api/v1/pin/', data=post_data)
self.assertEqual(self.deserialize(response)['id'], 3)
self.assertHttpCreated(response)
# A number of Image objects should stay the same as we are using an existing image
self.assertEqual(Image.objects.count(), 2)


Načítá se…
Zrušit
Uložit