From abf599be33b383a6a5baf9493093b2126a622ac8 Mon Sep 17 00:00:00 2001 From: ttt Date: Sat, 13 May 2017 00:29:47 +0530 Subject: added all server files --- .../django/contrib/auth/fixtures/natural.json | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 lib/python2.7/site-packages/django/contrib/auth/fixtures/natural.json (limited to 'lib/python2.7/site-packages/django/contrib/auth/fixtures/natural.json') diff --git a/lib/python2.7/site-packages/django/contrib/auth/fixtures/natural.json b/lib/python2.7/site-packages/django/contrib/auth/fixtures/natural.json new file mode 100644 index 0000000..795c1a3 --- /dev/null +++ b/lib/python2.7/site-packages/django/contrib/auth/fixtures/natural.json @@ -0,0 +1,32 @@ +[ + { + "pk": 1, + "model": "auth.group", + "fields": { + "name": "my_group", + "permissions": [] + } + }, + { + "pk": 1, + "model": "auth.user", + "fields": { + "username": "my_username", + "first_name": "", + "last_name": "", + "is_active": true, + "is_superuser": true, + "is_staff": true, + "last_login": "2012-01-13 00:14:00", + "groups": [ + [ + "my_group" + ] + ], + "user_permissions": [], + "password": "pbkdf2_sha256$10000$LUyhxJjuLwXF$f6Zbpnx1L5dPze8m0itBaHMDyZ/n6JyhuavQy2RrBIM=", + "email": "email@example.com", + "date_joined": "2012-01-13 00:14:00" + } + } +] -- cgit