- Renamed `totalUsers` and `activeUsers` to `total_users` and `active_users` across frontend and backend for consistency. - Enhanced demo user creation by randomizing `created_at` dates for realistic charts. - Expanded demo data to include `is_active` for demo users, improving user status representation. - Refined admin dashboard statistics to support updated user growth data model.
151 lines
4.3 KiB
JSON
151 lines
4.3 KiB
JSON
{
|
|
"organizations": [
|
|
{
|
|
"name": "Acme Corp",
|
|
"slug": "acme-corp",
|
|
"description": "A leading provider of coyote-catching equipment."
|
|
},
|
|
{
|
|
"name": "Globex Corporation",
|
|
"slug": "globex",
|
|
"description": "We own the East Coast."
|
|
},
|
|
{
|
|
"name": "Soylent Corp",
|
|
"slug": "soylent",
|
|
"description": "Making food for the future."
|
|
},
|
|
{
|
|
"name": "Initech",
|
|
"slug": "initech",
|
|
"description": "Software for the soul."
|
|
},
|
|
{
|
|
"name": "Umbrella Corporation",
|
|
"slug": "umbrella",
|
|
"description": "Our business is life itself."
|
|
}
|
|
],
|
|
"users": [
|
|
{
|
|
"email": "alice@acme.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Alice",
|
|
"last_name": "Smith",
|
|
"is_superuser": false,
|
|
"organization_slug": "acme-corp",
|
|
"role": "admin",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "bob@acme.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Bob",
|
|
"last_name": "Jones",
|
|
"is_superuser": false,
|
|
"organization_slug": "acme-corp",
|
|
"role": "member",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "charlie@acme.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Charlie",
|
|
"last_name": "Brown",
|
|
"is_superuser": false,
|
|
"organization_slug": "acme-corp",
|
|
"role": "member",
|
|
"is_active": false
|
|
},
|
|
{
|
|
"email": "carol@globex.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Carol",
|
|
"last_name": "Williams",
|
|
"is_superuser": false,
|
|
"organization_slug": "globex",
|
|
"role": "owner",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "dan@globex.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Dan",
|
|
"last_name": "Miller",
|
|
"is_superuser": false,
|
|
"organization_slug": "globex",
|
|
"role": "member",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "dave@soylent.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Dave",
|
|
"last_name": "Brown",
|
|
"is_superuser": false,
|
|
"organization_slug": "soylent",
|
|
"role": "member",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "eve@initech.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Eve",
|
|
"last_name": "Davis",
|
|
"is_superuser": false,
|
|
"organization_slug": "initech",
|
|
"role": "admin",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "frank@umbrella.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Frank",
|
|
"last_name": "Miller",
|
|
"is_superuser": false,
|
|
"organization_slug": "umbrella",
|
|
"role": "member",
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "george@umbrella.com",
|
|
"password": "Demo123!",
|
|
"first_name": "George",
|
|
"last_name": "Costanza",
|
|
"is_superuser": false,
|
|
"organization_slug": "umbrella",
|
|
"role": "member",
|
|
"is_active": false
|
|
},
|
|
{
|
|
"email": "grace@example.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Grace",
|
|
"last_name": "Hopper",
|
|
"is_superuser": false,
|
|
"organization_slug": null,
|
|
"role": null,
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "heidi@example.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Heidi",
|
|
"last_name": "Klum",
|
|
"is_superuser": false,
|
|
"organization_slug": null,
|
|
"role": null,
|
|
"is_active": true
|
|
},
|
|
{
|
|
"email": "ivan@example.com",
|
|
"password": "Demo123!",
|
|
"first_name": "Ivan",
|
|
"last_name": "Drago",
|
|
"is_superuser": false,
|
|
"organization_slug": null,
|
|
"role": null,
|
|
"is_active": false
|
|
}
|
|
]
|
|
} |