Ticket #8886: infrax.json

File infrax.json, 2.2 KB (added by erichs@…, 16 years ago)
Line 
1[
2 {
3 "pk": 1,
4 "model": "auth.user",
5 "fields": {
6 "username": "admin",
7 "first_name": "admin",
8 "last_name": "-",
9 "is_active": true,
10 "is_superuser": true,
11 "is_staff": true,
12 "last_login": "2008-09-05 08:08:43",
13 "groups": [],
14 "user_permissions": [],
15 "password": "sha1$6c498$e2ffe8dc50c1ec56e53b209fad6f04151408b732",
16 "email": "admin@calytrix.com",
17 "date_joined": "2007-03-02 11:04:13"
18 }
19 },
20 {
21 "pk": 3,
22 "model": "auth.user",
23 "fields": {
24 "username": "inactiveuser",
25 "first_name": "Inactive",
26 "last_name": "User",
27 "is_active": false,
28 "is_superuser": true,
29 "is_staff": false,
30 "last_login": "2008-09-05 08:04:07",
31 "groups": [],
32 "user_permissions": [],
33 "password": "password",
34 "email": "inactive@example.com",
35 "date_joined": "2008-09-05 08:04:07"
36 }
37 },
38 {
39 "pk": 2,
40 "model": "auth.user",
41 "fields": {
42 "username": "activeuser",
43 "first_name": "Active",
44 "last_name": "User",
45 "is_active": true,
46 "is_superuser": false,
47 "is_staff": true,
48 "last_login": "2008-09-05 08:03:03",
49 "groups": [],
50 "user_permissions": [],
51 "password": "password",
52 "email": "active@example.com",
53 "date_joined": "2008-09-05 08:03:03"
54 }
55 },
56 {
57 "pk": 3,
58 "model": "infrastructure.employee",
59 "fields": {
60 "user_permissions": [],
61 "is_active": false,
62 "groups": [],
63 "title": "Inactive User"
64 }
65 },
66 {
67 "pk": 2,
68 "model": "infrastructure.employee",
69 "fields": {
70 "user_permissions": [],
71 "is_active": true,
72 "groups": [],
73 "title": "Active User"
74 }
75 }
76]
Back to Top