2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/cypress/fixtures/users/user.ts
2022-08-31 21:44:33 +02:00

30 lines
754 B
TypeScript

import type { UserSettings } from '../../../models/UserSettings'
import type { User } from '../../../models/User'
export const userExample: User = {
id: 1,
name: 'Divlo',
email: 'contact@divlo.fr',
password: 'somepassword',
logo: null,
status: null,
biography: null,
website: 'https://divlo.fr',
isConfirmed: true,
temporaryToken: 'temporaryUUIDtoken',
temporaryExpirationToken: '2021-10-20T20:59:08.485Z',
createdAt: '2021-10-20T20:30:51.595Z',
updatedAt: '2021-10-20T20:59:08.485Z'
}
export const userSettingsExample: UserSettings = {
id: 1,
language: 'en',
theme: 'dark',
isPublicEmail: false,
isPublicGuilds: false,
createdAt: '2021-10-20T20:30:51.605Z',
updatedAt: '2021-10-22T07:22:07.956Z',
userId: 1
}