diff --git a/docs/api/v1.rst b/docs/api/v1.rst index a8c9e047130..24ddc0831bd 100644 --- a/docs/api/v1.rst +++ b/docs/api/v1.rst @@ -403,22 +403,20 @@ User .. sourcecode:: js { - "first_name": "", - "id": "1", - "last_login": "2010-10-28T13:38:13.022687", - "last_name": "", - "resource_uri": "/api/v1/user/1/", + "id": "1", + "resource_uri": "/api/v1/user/1/", "username": "testuser" } - :>json string first_name: First name. :>json string id: User id. - :>json string last_login: Timestamp of last login. - :>json string last_name: Last name. :>json string resource_uri: URI for this user. :>json string username: User name. - - + +.. important:: + + This API was changed after the initial release to remove private fields. + + Versions -------- .. http:get:: /api/v1/version/ diff --git a/readthedocs/api/base.py b/readthedocs/api/base.py index 7725d5261be..12caab01324 100644 --- a/readthedocs/api/base.py +++ b/readthedocs/api/base.py @@ -193,7 +193,7 @@ class UserResource(ModelResource): class Meta(object): allowed_methods = ['get'] queryset = User.objects.all() - fields = ['username', 'first_name', 'last_name', 'last_login', 'id'] + fields = ['username', 'id'] filtering = { 'username': 'exact', }