This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import transaction | |
from rest_framework import mixins | |
from rest_framework.viewsets import GenericViewSet | |
__all__ = ['AtomicCreateModelMixin', 'AtomicUpdateModelMixin', 'AtomicDestroyModelMixin', | |
'AtomicModelViewSetMixin', 'AtomicModelViewSet'] | |
class AtomicCreateModelMixin(mixins.CreateModelMixin): |