mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-04 09:57:55 +03:00 
			
		
		
		
	Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
This commit is contained in:
		
						commit
						ce5e8f8946
					
				| 
						 | 
				
			
			@ -205,9 +205,9 @@ You may need to provide custom `ViewSet` classes that do not have the full set o
 | 
			
		|||
 | 
			
		||||
To create a base viewset class that provides `create`, `list` and `retrieve` operations, inherit from `GenericViewSet`, and mixin the required actions:
 | 
			
		||||
 | 
			
		||||
    class CreateListRetrieveViewSet(mixins.CreateMixin,
 | 
			
		||||
                                    mixins.ListMixin,
 | 
			
		||||
                                    mixins.RetrieveMixin,
 | 
			
		||||
    class CreateListRetrieveViewSet(mixins.CreateModelMixin,
 | 
			
		||||
                                    mixins.ListModelMixin,
 | 
			
		||||
                                    mixins.RetrieveModelMixin,
 | 
			
		||||
                                    viewsets.GenericViewSet):
 | 
			
		||||
        """
 | 
			
		||||
        A viewset that provides `retrieve`, `update`, and `list` actions.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user