mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
34d300d1da
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import { AlbumEntity } from './album.entity';
|
|
import { APIKeyEntity } from './api-key.entity';
|
|
import { AssetEntity } from './asset.entity';
|
|
import { DeviceInfoEntity } from './device-info.entity';
|
|
import { SharedLinkEntity } from './shared-link.entity';
|
|
import { SmartInfoEntity } from './smart-info.entity';
|
|
import { SystemConfigEntity } from './system-config.entity';
|
|
import { UserTokenEntity } from './user-token.entity';
|
|
import { UserEntity } from './user.entity';
|
|
|
|
export * from './album.entity';
|
|
export * from './api-key.entity';
|
|
export * from './asset.entity';
|
|
export * from './device-info.entity';
|
|
export * from './exif.entity';
|
|
export * from './shared-link.entity';
|
|
export * from './smart-info.entity';
|
|
export * from './system-config.entity';
|
|
export * from './tag.entity';
|
|
export * from './user-token.entity';
|
|
export * from './user.entity';
|
|
|
|
export const databaseEntities = [
|
|
AssetEntity,
|
|
AlbumEntity,
|
|
APIKeyEntity,
|
|
DeviceInfoEntity,
|
|
UserEntity,
|
|
SharedLinkEntity,
|
|
SmartInfoEntity,
|
|
SystemConfigEntity,
|
|
UserTokenEntity,
|
|
];
|