diff options
| author | Tom Christie | 2012-11-16 16:22:56 -0800 |
|---|---|---|
| committer | Tom Christie | 2012-11-16 16:22:56 -0800 |
| commit | d0524cfcc3ce81c2d4d0b0f54b045c1768bc955d (patch) | |
| tree | 62afa48a2167e42e105617261038342580404a83 /docs/tutorial/quickstart.md | |
| parent | 2263ed8b9409c709f6dbad2157f8debffb16c1d8 (diff) | |
| parent | 4068323df4a8a8ad8825d5e0ed1d31ee2a36484f (diff) | |
| download | django-rest-framework-d0524cfcc3ce81c2d4d0b0f54b045c1768bc955d.tar.bz2 | |
Merge pull request #423 from MechanisM/patch-1
Missing import of "Permission" model in docs
Diffstat (limited to 'docs/tutorial/quickstart.md')
| -rw-r--r-- | docs/tutorial/quickstart.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 93da1a59..9a36a2b0 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -8,7 +8,7 @@ Create a new Django project, and start a new app called `quickstart`. Once you' First up we're going to define some serializers in `quickstart/serializers.py` that we'll use for our data representations. - from django.contrib.auth.models import User, Group + from django.contrib.auth.models import User, Group, Permission from rest_framework import serializers |
