mirror of https://github.com/immich-app/immich.git
20 lines
506 B
TypeScript
20 lines
506 B
TypeScript
import { SessionItem } from 'src/types';
|
|
|
|
export class SessionResponseDto {
|
|
id!: string;
|
|
createdAt!: string;
|
|
updatedAt!: string;
|
|
current!: boolean;
|
|
deviceType!: string;
|
|
deviceOS!: string;
|
|
}
|
|
|
|
export const mapSession = (entity: SessionItem, currentId?: string): SessionResponseDto => ({
|
|
id: entity.id,
|
|
createdAt: entity.createdAt.toISOString(),
|
|
updatedAt: entity.updatedAt.toISOString(),
|
|
current: currentId === entity.id,
|
|
deviceOS: entity.deviceOS,
|
|
deviceType: entity.deviceType,
|
|
});
|