diff --git a/chroma_api/log.py b/chroma_api/log.py index 7502537558..3b219592c3 100644 --- a/chroma_api/log.py +++ b/chroma_api/log.py @@ -4,6 +4,7 @@ from chroma_core.lib.util import normalize_nid +from chroma_api.utils import DateSerializer from tastypie import fields from tastypie.authorization import DjangoAuthorization @@ -60,6 +61,7 @@ class Meta: 'tag': ChromaModelResource.ALL_FILTER_STR, } + serializer = DateSerializer() authorization = LogAuthorization() authentication = AnonymousAuthentication() ordering = ['datetime', 'fqdn']