kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
14 wiersze
386 B
Python
14 wiersze
386 B
Python
import datetime
|
|
|
|
from rest_framework import fields as rest_fields
|
|
|
|
|
|
def to_api_date(value):
|
|
if isinstance(value, datetime.datetime):
|
|
f = rest_fields.DateTimeField()
|
|
return f.to_representation(value)
|
|
if isinstance(value, datetime.date):
|
|
f = rest_fields.DateField()
|
|
return f.to_representation(value)
|
|
raise ValueError(f"Invalid value: {value}")
|