Browse Source

Merge branch 'issue_2' of https://github.com/kevin-brown/django-rest-framework-bulk into kevin-brown-issue_2

Conflicts:
	README.rst
Miroslav Shubernetskiy 11 years ago
parent
commit
9d40eb3735
3 changed files with 11 additions and 3 deletions
  1. 3 3
      README.rst
  2. 5 0
      rest_framework_bulk/generics.py
  3. 3 0
      rest_framework_bulk/mixins.py

+ 3 - 3
README.rst

@@ -135,6 +135,6 @@ Credits
 
 Maintainers/contributors:
 
-* Miroslav Shubernetskiy - `GitHub <https://github.com/miki725>`_.
-* Arien Tolner - `GitHub <https://github.com/Bounder>`_.
-
+* 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. ###

+ 3 - 0
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