1
0
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity Security Code Quality

Add user page

This commit is contained in:
2025-07-06 21:28:45 +07:00
parent 76ca36ca1b
commit ae1a45fe57
24 changed files with 2661 additions and 232 deletions

View File

@@ -0,0 +1,94 @@
import { User } from "./database.schema";
export const sampleUsers: User[] = [
{
id: 2,
username: "john.doe",
email: "john.doe@example.com",
firstName: "John",
lastName: "Doe",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 3,
username: "jane.smith",
email: "jane.smith@example.com",
firstName: "Jane",
lastName: "Smith",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 4,
username: "mike.johnson",
email: "mike.johnson@example.com",
firstName: "Mike",
lastName: "Johnson",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 5,
username: "sarah.wilson",
email: "sarah.wilson@example.com",
firstName: "Sarah",
lastName: "Wilson",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 6,
username: "david.brown",
email: "david.brown@example.com",
firstName: "David",
lastName: "Brown",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 7,
username: "emma.davis",
email: "emma.davis@example.com",
firstName: "Emma",
lastName: "Davis",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 8,
username: "alex.martinez",
email: "alex.martinez@example.com",
firstName: "Alex",
lastName: "Martinez",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 9,
username: "lisa.garcia",
email: "lisa.garcia@example.com",
firstName: "Lisa",
lastName: "Garcia",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 10,
username: "robert.taylor",
email: "robert.taylor@example.com",
firstName: "Robert",
lastName: "Taylor",
password: "password123", // You should hash this in production
isDeleted: false,
},
{
id: 11,
username: "maria.rodriguez",
email: "maria.rodriguez@example.com",
firstName: "Maria",
lastName: "Rodriguez",
password: "password123", // You should hash this in production
isDeleted: false,
},
];