7 lines
267 B
Python
7 lines
267 B
Python
from rest_framework import serializers
|
|
from .models import Snippet, LANGUAGE_CHOICES, STYLE_CHOICES
|
|
|
|
class SnippetSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Snippet
|
|
fields = ['id', 'title', 'code', 'linenos', 'language', 'style'] |