diff options
| author | Marko Tibold | 2011-12-12 08:51:02 -0600 |
|---|---|---|
| committer | Marko Tibold | 2011-12-12 08:51:02 -0600 |
| commit | c0bf45d82a329214d0dc7b4495548563ac97a2cc (patch) | |
| tree | 2936828f93953e283c840400754ad76779ecd667 /examples/permissionsexample | |
| parent | d69581e2afa2583876750ac8c65dff183975cd47 (diff) | |
| download | django-rest-framework-c0bf45d82a329214d0dc7b4495548563ac97a2cc.tar.bz2 | |
drop yaml fixture and replace with json
Diffstat (limited to 'examples/permissionsexample')
| -rw-r--r-- | examples/permissionsexample/fixtures/initial_data.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/permissionsexample/fixtures/initial_data.json b/examples/permissionsexample/fixtures/initial_data.json new file mode 100644 index 00000000..153de8e8 --- /dev/null +++ b/examples/permissionsexample/fixtures/initial_data.json @@ -0,0 +1,18 @@ +[ + { + "pk": 2, + "model": "auth.user", + "fields": { + "username": "test", + "first_name": "", + "last_name": "", + "is_active": true, + "is_superuser": false, + "is_staff": false, + "groups": [], + "user_permissions": [], + "password": "sha1$b3dff$671b4ab97f2714446da32670d27576614e176758", + "email": "" + } + } +] |
