hi,

this is very basic, but users in my application do not assume
permissions given either to them or to the group they are in, as
demonstrated below:

>>> ...
>>> u = User.objects.get(username='nick')

# the user has his own permissions
>>> u.user_permissions.all()
[<Permission: dataimport | data import | Can add data import>, ...]

# the user is in the group admin, and admin group has permissions
>>> u.groups.all()
[<Group: admin>]
>>> u.groups.all()[0].permissions.all()
[<Permission: nhsdata | admission method | Can add admission method>,
<Permission: nhsdata | cluster | Can add cluster>, ...]

# but
>>> u.get_all_permissions()
set([])


Strange, or am I missing something basic?


Best,
oMat


ps: I am using Django 1.1.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to