Merge pull request #4415 from rtfd/davidfischer/cleanup-api-v1

API v1 cleanup
humitos/clean/fabric-function
Eric Holscher 2018-07-26 17:15:14 +01:00 committed by GitHub
commit be1912e4ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 11 deletions

View File

@ -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/

View File

@ -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',
}