Skip to content

Commit

Permalink
Cleaned up some small formatting in docs/authentication.txt
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3068 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 2, 2006
1 parent 688cd55 commit 674773b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/authentication.txt
Expand Up @@ -82,14 +82,14 @@ Methods
``user_permissions``. ``User`` objects can access their related
objects in the same way as any other `Django model`_::

``myuser.objects.groups = [group_list]``
``myuser.objects.groups.add(group, group,...)``
``myuser.objects.groups.remove(group, group,...)``
``myuser.objects.groups.clear()``
``myuser.objects.permissions = [permission_list]``
``myuser.objects.permissions.add(permission, permission, ...)``
``myuser.objects.permissions.remove(permission, permission, ...]``
``myuser.objects.permissions.clear()``
myuser.objects.groups = [group_list]
myuser.objects.groups.add(group, group,...)
myuser.objects.groups.remove(group, group,...)
myuser.objects.groups.clear()
myuser.objects.permissions = [permission_list]
myuser.objects.permissions.add(permission, permission, ...)
myuser.objects.permissions.remove(permission, permission, ...]
myuser.objects.permissions.clear()

In addition to those automatic API methods, ``User`` objects have the following
custom methods:
Expand Down

0 comments on commit 674773b

Please sign in to comment.