chore(web): remove unused code (#30768)

This commit is contained in:
Jason Rasmussen 2026-08-14 16:04:12 -04:00 committed by GitHub
parent 66d010381e
commit b19c4a591e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 1 additions and 329 deletions

View file

@ -1,16 +1,7 @@
import { faker } from '@faker-js/faker';
import { UserAvatarColor, UserStatus, type UserAdminResponseDto, type UserResponseDto } from '@immich/sdk';
import { UserAvatarColor, UserStatus, type UserAdminResponseDto } from '@immich/sdk';
import { Sync } from 'factory.ts';
export const userFactory = Sync.makeFactory<UserResponseDto>({
id: Sync.each(() => faker.string.uuid()),
email: Sync.each(() => faker.internet.email()),
name: Sync.each(() => faker.person.fullName()),
profileImagePath: '',
avatarColor: UserAvatarColor.Primary,
profileChangedAt: Sync.each(() => faker.date.recent().toISOString()),
});
export const userAdminFactory = Sync.makeFactory<UserAdminResponseDto>({
id: Sync.each(() => faker.string.uuid()),
email: Sync.each(() => faker.internet.email()),