mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-13 03:16:58 -05:00
41d60c8a02
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
23 lines
618 B
TypeScript
23 lines
618 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",
|
|
objective: "improve_user_retention",
|
|
notificationSettings: {
|
|
alert: {},
|
|
|
|
unsubscribedOrganizationIds: [],
|
|
},
|
|
role: "other",
|
|
locale: "en-US",
|
|
lastLoginAt: new Date("2024-01-01T00:00:00.000Z"),
|
|
isActive: true,
|
|
};
|