mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-07 00:03:32 +02:00
7 lines
205 B
Python
Executable File
7 lines
205 B
Python
Executable File
from rest_framework import serializers
|
|
from pyapp.models import ShoppingItem
|
|
|
|
class ShoppingItemSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = ShoppingItem
|
|
fields = '__all__' |