This commit is contained in:
Trey t
2023-07-14 14:55:15 -05:00
parent 4e1c4777ad
commit c5b577fc1b
14 changed files with 107 additions and 2 deletions

7
video/serializers.py Normal file
View File

@@ -0,0 +1,7 @@
from rest_framework import serializers
from .models import *
class VideoSerializer(serializers.ModelSerializer):
class Meta:
model = Video
fields = ('video_file',)