def root(self, _):
"""
Implements the
`root <http://docs.annotatorjs.org/en/v1.2.x/storage.html#root>`_
endpoint.
:param _:
:class:`rest_framework.request.Request` object—ignored here.
:return:
API information :class:`rest_framework.response.Response`.
"""
return JsonResponse(
{
"name": getattr(settings,
"ANNOTATOR_NAME",
"django-annotator-store"),
"version": annotator.__version__
})
评论列表
文章目录