mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 01:11:16 +03:00
fix: replace first and last name with single field (#4915)
This commit is contained in:
@@ -5,8 +5,7 @@ import { Sync } from 'factory.ts';
|
||||
export const userFactory = Sync.makeFactory<UserResponseDto>({
|
||||
id: Sync.each(() => faker.datatype.uuid()),
|
||||
email: Sync.each(() => faker.internet.email()),
|
||||
firstName: Sync.each(() => faker.name.firstName()),
|
||||
lastName: Sync.each(() => faker.name.lastName()),
|
||||
name: Sync.each(() => faker.name.fullName()),
|
||||
storageLabel: Sync.each(() => faker.random.alphaNumeric()),
|
||||
externalPath: Sync.each(() => faker.random.alphaNumeric()),
|
||||
profileImagePath: '',
|
||||
|
||||
Reference in New Issue
Block a user