Files
formbricks/apps/web/modules/auth/lib/mock-data.ts
2025-09-12 09:01:03 +00:00

21 lines
562 B
TypeScript

import { TUser } from "@formbricks/types/user";
export const mockUser: TUser = {
id: "cm5xj580r00000cmgdj9ohups",
name: "mock User",
email: "john.doe@example.com",
emailVerified: new Date("2024-01-01T00:00:00.000Z"),
createdAt: new Date("2024-01-01T00:00:00.000Z"),
updatedAt: new Date("2024-01-01T00:00:00.000Z"),
twoFactorEnabled: false,
identityProvider: "google",
notificationSettings: {
alert: {},
unsubscribedOrganizationIds: [],
},
locale: "en-US",
lastLoginAt: new Date("2024-01-01T00:00:00.000Z"),
isActive: true,
};