Skip to content

Commit

Permalink
Fixed #20730 -- Fixed "Programmatically creating permissions" error.
Browse files Browse the repository at this point in the history
Thanks glarrain for the report.
  • Loading branch information
timgraham committed Jul 11, 2013
1 parent b0953dc commit 684a606
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/topics/auth/default.txt
Expand Up @@ -234,10 +234,11 @@ a model's ``Meta`` class, you can also create permissions directly. For
example, you can create the ``can_publish`` permission for a ``BlogPost`` model
in ``myapp``::

from myapp.models import BlogPost
from django.contrib.auth.models import Group, Permission
from django.contrib.contenttypes.models import ContentType

content_type = ContentType.objects.get(app_label='myapp', model='BlogPost')
content_type = ContentType.objects.get_for_model(BlogPost)
permission = Permission.objects.create(codename='can_publish',
name='Can Publish Posts',
content_type=content_type)
Expand Down

0 comments on commit 684a606

Please sign in to comment.