Files
backend/apps/geology/serializers/photo.py
A'zamov Samandar 0229a0595c
Some checks failed
Deploy Django Application to Server / deploy (push) Failing after 19s
Telegram Notifications / Telegram Gate (push) Failing after 5s
gealogiuya
2026-02-27 14:56:23 +05:00

12 lines
240 B
Python

from typing import Type
from rest_framework import serializers
from apps.geology.models import Photo
class PhotoSerializer(serializers.ModelSerializer):
class Meta:
model: Type[Photo] = Photo
fields: str = "__all__"