瀏覽代碼

Merge branch 'master' of https://github.com/miki725/django-rest-framework-bulk into develop

Miroslav Shubernetskiy 11 年之前
父節點
當前提交
1ea11f6cf6
共有 3 個文件被更改,包括 13 次插入4 次删除
  1. 4 3
      README.rst
  2. 5 0
      rest_framework_bulk/generics.py
  3. 4 1
      rest_framework_bulk/mixins.py

+ 4 - 3
README.rst

@@ -133,7 +133,8 @@ can be dangerous.
 Credits
 -------
 
-Current maintainers:
-
-* Miroslav Shubernetskiy - miroslav@miki725.com
+Maintainers/contributors:
 
+* Miroslav Shubernetskiy - `GitHub <https://github.com/miki725>`_
+* Arien Tolner - `GitHub <https://github.com/Bounder>`_
+* Kevin Brown - `GitHub <https://github.com/kevin-brown>`_

+ 5 - 0
rest_framework_bulk/generics.py

@@ -4,6 +4,11 @@ from rest_framework.generics import GenericAPIView
 from . import mixins as bulk_mixins
 
 
+__all__ = ["BulkCreateAPIView", "BulkUpdateAPIView", "BulkDestroyAPIView", "ListBulkCreateAPIView",
+           "ListCreateBulkUpdateAPIView", "ListCreateBulkUpdateDestroyAPIView", "ListBulkCreateUpdateAPIView",
+           "ListBulkCreateUpdateDestroyAPIView"]
+
+
 ##########################################################
 ### Concrete view classes that provide method handlers ###
 ### by composing the mixin classes with the base view. ###

+ 4 - 1
rest_framework_bulk/mixins.py

@@ -5,6 +5,9 @@ from rest_framework.mixins import CreateModelMixin
 from rest_framework.response import Response
 
 
+__all__ = ["BulkCreateModelMixin", "BulkUpdateModelMixin", "BulkDestroyModelMixin"]
+
+
 class BulkCreateModelMixin(CreateModelMixin):
     """
     Either create a single or many model instances in bulk by using the
@@ -50,7 +53,7 @@ class BulkUpdateModelMixin(object):
 
         if serializer.is_valid():
             try:
-                self.pre_save(serializer.object)
+                [self.pre_save(obj) for obj in serializer.object]
             except ValidationError as err:
                 # full_clean on model instances may be called in pre_save
                 # so we have to handle eventual errors.