mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-04 09:57:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			221 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from rest_framework.serializers import ModelSerializer
 | 
						|
from tests.models import BasicModelWithUsers
 | 
						|
 | 
						|
 | 
						|
class BasicSerializer(ModelSerializer):
 | 
						|
    class Meta:
 | 
						|
        model = BasicModelWithUsers
 | 
						|
        fields = '__all__'
 |